rapidom / schema

RapidOM schema validator

Home Page:https://schema.js.org

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

RapidOM Schema

TypeScript ready schema validator

Build Status Coverage Status NPM Version npm bundle size (minified) npm bundle size (minified + gzip) NPM Monthly Downloads NPM Total Downloads Open Issues Pull Requests License

Table of Content

Getting Started

Installation

NPM / GitHub Packages:

npm i @rapidom/schema

Yarn:

yarn add @rapidom/schema

Usage

import Schema from "@rapidom/schema";

const schema = {
  username: Schema.string()
    .alphanum()
    .required(),
  name: Schema.object().keys({
    first: Schema.string()
      .min(3)
      .required(),
    last: Schema.string().min(3),
  }).required(),
  datetime: Schema.date().default(Date.now),
};

try {
  const result = Schema.object().keys(schema).validate(value);
} catch (error) {
  // your error handler
}

for more details read the documents

Authors

See also the list of contributors who participated in this project.

Versioning

We use SemVer for versioning. For the versions available, see the releases.

License

This project is licensed under the MIT License - see the LICENSE file for details

About

RapidOM schema validator

https://schema.js.org

License:MIT License


Languages

Language:TypeScript 88.1%Language:JavaScript 11.9%