secure-config

0.0.1-3 • Public • Published

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.

Readme

Keywords

Package Sidebar

Install

npm i secure-config

Weekly Downloads

0

Version

0.0.1-3

License

MIT

Last publish

Collaborators