Im migrating my config from another library to node-config.
I have two questions:
- The old library uses
config.get('a:b');to get some value, butnode-configuse a single dot as a delimiter:config.get('a.b');.
Is there is a way to configure it to use : to save my time and refactor my code?
- Is there is a way to set a runtime values. e.g.
config.set('key', 'val');?
Done it by: 1. wrap
node-configin a new js file 2. proxied theget,hasandsetmethods methodsSomething like that: