active-schema
v0.0.1
Published
Better way for writing JSON schemas
Downloads
3
Readme
Active Schema
Better way for writing JSON schemas
Contents
Install
npm install active-schema
# Use yarn?
yarn add active-schema
Getting Started
const active = require('active-schema')
var schema = active `
@title('Active Schema')
@description('Make JSON Schema easy')
object({
install: string('npm install active-schema').constant()
})
`