0.0.5 • Published 10 years ago

configjson v0.0.5

Weekly downloads
2
License
Apache-2.0
Repository
github
Last release
10 years ago

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
});
0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago