extend-json

1.5.3 • Public • Published

extend-json Build status

extend-json is a npm module for populating JSON files, with other JSON files or a specified function.

to extend Objects

">>fileB": {"file" : "./fileB.json"}

to extend Arrays

[{">>fileB": {"file" : "./fileB.json", "replace":true}}]
var extendJSON = require('./index');
var fileA = require('./fileA.json');

extendJSON(fileA).then(function (json) {
   console.log(JSON.stringify(json, null, 4))
}).catch(function (e) {
    console.log('error', e);
});

Options are optional and default to

extendJSON(fileA, {pointer:'>>', path:'./'})

Readme

Keywords

none

Package Sidebar

Install

npm i extend-json

Weekly Downloads

1

Version

1.5.3

License

ISC

Last publish

Collaborators

  • willmonk
  • anti_girl