0.3.0 • Published 7 years ago

simplified-json v0.3.0

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
7 years ago

Simplified JSON Parser

A parser that converts SJSON into JSON.

Build Status

Installation

npm install --save simplified-json

Usage

sample.sjson

description = "A sample, json document."
author = {
 	name = "Autodesk"
}
keywords = ["sample", "sjson"]

parse

Parse a sjson string and return a javascript object

var SJSON = require('simplified-json'),
  fs = require('fs');

fs.readFile('sample.sjson', 'utf8', function (err, data) {
  if (err) {
    return console.log(err);
  }
  console.log(SJSON.parse(data));
});

stringify

Parse a javascript object and return a sjson string

var SJSON = require('simplified-json'),
  fs = require('fs'),
  data = {
    keywords: [
    	"sample"
    	"sjson"
    ]
  };

fs.writeFile('sample.sjson', SJSON.stringify(data), 'utf8', function (err) {
  if (err) {
    return console.log(err);
  }
});

Featured In