secure-config

v0.0.1
Configure node apps with plain and encrypted JSON files
config settings secure

Node Secure Config

Build Status

A simple module for loading application configuration settings from JSON files. Default settings are loaded and then merged with environment specific settings. Environment settings override defaults. Settings are stored as JSON as plain text .json or encrypted .store.

Example Usage

var path = require("path");
var homePath = process.env.HOME || process.env.HOMEPATH || process.env.USERPROFILE;
var keyPath = path.join(homePath, ".app-press", "secure-store.pem");

var config = require("secure-config")({
  keyPath: keyPath
});

var cbConn = db.createConnection(confg.db.connectionString, config.db.options, function (err) {
  ...
});

License

View the LICENSE file.

Metadata

  • MIT
  • >=0.8
  • App Press
  • released 5/13/2013

Downloads

Maintainers