Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

server-config

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

server-config

Load Configuration for Servers from Environment Variables, Config Files, EC2 Meta Data, etc

latest
Source
npmnpm
Version
0.1.0
Version published
Weekly downloads
10
Maintainers
1
Weekly downloads
 
Created
Source

server-config

One of the fundamental problems of software development is keeping configuration information for different environments. Most organizations distinguish environments such as DEV, QA, Staging, and Production.

The configuration approach promoted by this little utility makes it uncesseary to keep an elaborate build process supporting these different enviroments. Using this utility, configuration information can be stored in embedded defaults that can be overriden using a configuration file and environment variables.

Example

var path = require('path'),
    loadConfig = require('server-config'),
    ec2instance = loadConfig.ec2instance,
    embedded = {
      "httpPort": 80,
      "httpsPort": 443,
      "seaPort": 9090
    },
    host = '~/.defaults.json#myapp',
    env = {
        mongdb: process.env["MONGODB"],
        seaPort: process.env["SEA_PORT"]
    },
    ec2 = {
        "public-hostname":ec2instance("meta-data/public-hostname"),
        "hostname":ec2instance("meta-data/hostname")
    };

    loadConfig(embedded, host, env, ec2, function(err, config) {
        if (err) {
          throw err();
        }
    });

Let's further assume the host file contains:

{
  "myapp": {
    "httpPort": 3000,
    "mongodb": "mongodb://localhost/testbase",
    "welcomeMsg: "Hellow World!"
  }
}

Lastly, let's assume that there is one evnironment variable defined:

export SEA_PORT=2000

If all this is the case, the resulting config information returned by the call above would be:

{
  "httpPort": 3000,
  "httpsPort": 443,
  "welcomeMsg: "Hellow World!",
  "seaPort": 2000
}

FAQs

Package last updated on 30 Aug 2012

Did you know?

Socket

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.

Install

Related posts