Skip to main content
Home

@murat/yelix@0.1.47
Built and signed on GitHub Actions

Yelix is a powerful web server library built specifically for Deno, leveraging the Hono framework in the background. Including built-in data validation, OpenAPI 3.1 support, and auto-generated backend documentation.

This package works with Deno
This package works with Deno
JSR Score
82%
Published
2 months ago (0.1.47)
class StringZod

Constructors

new
StringZod(_input: YelixInput)

Properties

Methods

base64(failedMessage?: FailedMessage): this
date(failedMessage?: FailedMessage): this
datetime(failedMessage?: FailedMessage): this
email(failedMessage?: FailedMessage): this
endsWith(
searchString: string,
failedMessage?: FailedMessage,
): this
enum(
enums: string[],
failedMessage?: FailedMessage,
): this
includes(
searchString: string,
failedMessage?: FailedMessage,
): this
ip(failedMessage?: FailedMessage): this
isValidType(failedMessage?: FailedMessage): this
length(
exactLength: number,
failedMessage?: FailedMessage,
): this
max(
maxLength: number,
failedMessage?: FailedMessage,
): this
min(
minLength: number,
failedMessage?: FailedMessage,
): this
optional(): this
regex(
pattern: RegExp,
failedMessage?: FailedMessage,
): this
required(failedMessage?: FailedMessage): this
startsWith(
searchString: string,
failedMessage?: FailedMessage,
): this
time(failedMessage?: FailedMessage): this
toLowerCase(failedMessage?: FailedMessage): this
toUpperCase(failedMessage?: FailedMessage): this
trim(failedMessage?: FailedMessage): this
url(failedMessage?: FailedMessage): this

New Ticket: Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@murat/yelix

Import symbol

import { StringZod } from "@murat/yelix";
or

Import directly with a jsr specifier

import { StringZod } from "jsr:@murat/yelix";