
Product
Announcing Socket Fix 2.0
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
nfs-config-resolver
Advanced tools
[](https://travis-ci.org/nodeframe/config-resolver) [](https://www.npmjs.com/package/nfs-config-resolver)
An environment base config resolver that will reduce your worries about config and environments! Have a development environment and the production where you need it to be different config? fine! config-resolver will solve it! Have a config you want to declare only once and share on all environments? fine! config-resolver got you covered!
npm install nfs-config-resolver --save
Create configs
folder within your project directory
Create common.js
development.js
production.js
files inside configs
directory
// common.js
module.exports = {
"host":"localhost",
"port":80
};
// development.js
module.exports = {
"port":81,
"mongodb":{
"host": "localhost"
"port": "27017"
},
"mode": "admin"
};
// production.js
module.exports = {
"port":82
};
You can override configuration with environment parameter
// run with environment NODE_ENV=development MONGO_HOST=182.166.12.2 MODE=customer
const config = require('nfs-config-resolver')();
console.log(config)
/*
{
"port":81,
"mongodb":{
"host": "182.166.12.2"
"port": "27017"
},
"mode": "customer"
}
*/
// run with environment NODE_ENV = production
const config = require('nfs-config-resolver')();
console.log(config.port)
// 82
The great thing about this config-resolver is that it can help you on declaring config that needs to bind with the Environment Variables (eg. docker ENV)
You can declare you config by just adding @
prefix and comma like so:
// development.js
module.exports = {
"port":81,
"mongodb":{
"@host:MONGODB_HOST": "localhost"
"@port:MONGODB_PORT": "27017"
},
"@mode": "admin"
};
The config generated from this file will be as same as this config
// development.js
module.exports = {
"port":81,
"mongodb":{
"host": process.env.MONGODB_HOST || "localhost"
"port": process.env.MONGODB_PORT || "27017"
},
"mode": process.env.MODE || "admin"
};
by this config, at runtime, the config value will be overwritten by the environment variable, wether it's linux or Docker. This allow you to have a cleaner setting and save your time on worrying and declaring those environments.
as from the example above, you can override the mongo host just by changing the environment variable at runtime, like this
MONGODB_HOST=11.11.11.11 node ./index.js
and so on.
The most beneficial to this feature is those who make Docker image!
FAQs
[](https://travis-ci.org/nodeframe/config-resolver) [](https://www.npmjs.com/package/nfs-config-resolver)
The npm package nfs-config-resolver receives a total of 36 weekly downloads. As such, nfs-config-resolver popularity was classified as not popular.
We found that nfs-config-resolver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.