Skip to content

Latest commit

 

History

History
13 lines (12 loc) · 330 Bytes

README.md

File metadata and controls

13 lines (12 loc) · 330 Bytes

openChat

json-config-manager is a configuration manager for node js application"

Example

config.json in folder config
{ "port" : "8080",
"indexUrl" : "monkeyDLuffy"
}

server
var conf = require("json-config-manager").requireModule();
var port = conf.port;
var indexUrl = conf.indexUrl;