json-chance
v0.1.1
Published
Create random JSON objects using json-spawn and Chance.js
Downloads
6
Maintainers
Readme
json-chance
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