0.1.1 • Published 9 years ago

json-chance v0.1.1

Weekly downloads
1
License
MIT
Repository
github
Last release
9 years ago

json-chance NPM version

Build Status Dependency Status

Create random JSON objects using json-spawn and Chance.js.

Node

var jsonChance = require('json-chance')

jsonChance('guid,name,profile(url,twitter,fbid)')

// returns
//	{
//	 "guid": "55585f1d-aedf-50ef-9436-3cbeb3e76afc",
//	 "name": "William McCoy",
//	 "profile": {
//	  "url": "http://bim.gov/du",
//	  "twitter": "@nijgu",
//	  "fbid": 1000053597266623
//	 }
//	}

CLI

$ jsonchance 'guid,name,profile(url,twitter,fbid)'

{
  "guid": "55585f1d-aedf-50ef-9436-3cbeb3e76afc",
  "name": "William McCoy",
  "profile": {
	  "url": "http://bim.gov/du",
      "twitter": "@nijgu",
      "fbid": 1000053597266623
	}
}

Installation

$ npm install json-chance

Tests

$ npm test
$ npm run coverage

License

MIT