aaroca / dson

Read json files allowing add comments on it

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

dson

Read json files allowing comments on it

{
	/**
	 * Name of the person
	 */
	"name": "alvaro",
	
	/**
	 * Age of the person
	 */
	"age": 28,
	
	/**
	 * Pets of the person
	 */
	"pet": {
		/** Pet name */
		"name": "batman",
		
		/** Pet age */
		"age": 1
	}
}

usage

Just add the npm packge

npm install --save @aaroca/dson

Add to your js file as usual and call the load method

var dson = require('@aaroca/dson');

var dummy = dson.load('./commentedDummy.json');

You will get on dummy var the content of the json file without comments.

{ name: 'alvaro', age: 28, pet: { name: 'batman', age: 1 } }

About

Read json files allowing add comments on it

License:MIT License


Languages

Language:JavaScript 100.0%