We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This following is a simple yet working way to store the config to file.
conf.js
module.exports = { "key": "value" };
app.js
var conf = new reconfig(require('./conf.js'));