configjson

0.0.5 • Public • Published

Configuration cjson

Is a wrapper for configuration with CJSON.

How to use it:

var config = require('configjson');
var myConfig = new config([
    'file1.json',
    'file2.json',
], {
    "hello" : ":)"
});

Make a call the variables.

myConfig.get(name);
myConfig.set(obj);
myConfig.set(name, val);
myconfig.enable(name);
myconfig.disable(name);
myconfig.enabled(name);
myconfig.disabled(name);

Make configurable

myConfig.configure("test", function(){
    // Only run in Test
});
 
myconfig.configure("production", function(){
    // Only run in Production
});
 
myconfig.configure(function(){
    // Run in All
});
 

Package Sidebar

Install

npm i configjson

Weekly Downloads

2

Version

0.0.5

License

Apache-2.0

Last publish

Collaborators

  • alejonext
  • jamlcoder