1.0.1-dev • Published 2 years ago

jason-js v1.0.1-dev

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

JASON

Jason(not to be confused with json) : The Easiest and the fastest database file format

Data Types

JASON supports the following formats:- 1. String ("string") 2. Integer (20) 3. Arrays "20", 30 4. Objects (soon!)

Example Of JASON

Jason file

data.type=jason;
type;
code=ahqsoftwares;
type=[20];

JS Code

//jason example
const jason = require("jason");

const reader = new jason("./test/test.jason");

console.log(reader.get("type"));
//returns [20]