Node.js package onlineconf reads configuration files generated by OnlineConf.
npm install onlineconfconst onlineconf = require('onlineconf');
// read value
const value = onlineconf.get('/my/parameter');
// watch config changes
onlineconf.on('reload', () => console.log(`new value: ${onlineconf.get('/my/parameter')}`));npm test