Giter Site home page Giter Site logo

azusfin / yaml-schema Goto Github PK

View Code? Open in Web Editor NEW
2.0 0.0 0.0 44 KB

YAML document schema validator and transformer

License: MIT License

TypeScript 79.99% JavaScript 20.01%
yaml schema yaml-schema yaml-document yaml-schema-validator yaml-validator

yaml-schema's Introduction

yaml-schema

YAML document schema validator and transformer

NPM Version NPM Downloads

Example

import { readFileSync } from "node:fs"
import { YAML } from "yaml-schema"

const configFile = readFileSync("config.yml", "utf-8")

const yaml = new YAML({
    type: "object",
    props: {
        id: {
            type: "string"
        },
        token: {
            type: "string"
        }
    }
})

const config = yaml.parse(configFile)

How To Use

import { YAML } from "yaml-schema"

const yaml = new YAML(schema)
yaml.parse(yamlString)

Schema

const yaml = new YAML({
    type: schemaType,
    default?: defaultValue
})

Example:

const yaml = new YAML({
    type: "object",
    props: {
        name: {
            type: "string"
        }
    }
})

Types:

  • any
  • boolean
  • number
  • string
  • choices
  • array
  • object

Schema Additional Properties

number schema:

const yaml = new YAML({
    type: "number",
    limit?: {
        min?: number,
        max?: number
    }
})

string schema:

const yaml = new YAML({
    type: "string",
    length?: {
        min?: number,
        max?: number
    }
})

choices schema: choices allow numbers and strings

const yaml = new YAML({
    type: "choices",
    choices: [
        "first choice",
        "second choice",
        "third choice"
    ]
})

array schema:

const yaml = new YAML({
    type: "array",
    element: anotherSchema,
    length?: {
        min?: number,
        max?: number
    }
})
const yaml = new YAML({
    type: "array",
    element: {
        type: "string"
    },
    length?: {
        min?: number,
        max?: number
    }
})

object schema:

const yaml = new YAML({
    type: "object",
    props: {
        name: schema
    }
})
const yaml = new YAML({
    type: "object",
    props: {
        name: {
            type: "string",
            length: {
                max: 100
            }
        }
    }
})

or

const yaml = new YAML({
    type: "object",
    any: {
        interface: schema,
        length?: {
            min?: number,
            max?: number
        }
    }
})
const yaml = new YAML({
    type: "object",
    any: {
        interface: {
            type: "number",
            limit: {
                min: 10,
                max: 100
            }
        },
        length?: {
            min?: number,
            max?: number
        }
    }
})

yaml-schema's People

Contributors

azusfin avatar

Stargazers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.