Skip to content

Latest commit

 

History

History
47 lines (33 loc) · 870 Bytes

README.md

File metadata and controls

47 lines (33 loc) · 870 Bytes

X-JSON

A dependently typed programming language embedded in JSON, that can be used as a schema checker for JSON data.

The syntax is optimized for the most used use cases.

Instead of writing (like in json-schema):

{
  "type": "object",
  "properties": {
    "year": { "type": "number" },
    "name": { "type": "string" }
  }
}

I want to write:

{
  "name": "string",
  "year": "number"
}

Install

npm i @xieyuheng/x-json

Contributions

To make a contribution, fork this project and create a pull request.

Please read the STYLE-GUIDE.md before you change the code.

Remember to add yourself to AUTHORS. Your line belongs to you, you can write a little introduction to yourself but not too long.

License

GPLv3