New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@nlv8/reconvict

Package Overview
Dependencies
Maintainers
5
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nlv8/reconvict

Drop-in replacement for node-convict with runtime configuration reloading.

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-90%
Maintainers
5
Weekly downloads
 
Created
Source

reconvict

Drop-in replacement for node-convict with support for runtime configuration reloading like an absolute boss.

Features

  • Live configuration objects: Getting nested objects from the configuration will return live objects that reflect configuration changes.
  • Emission of configuration changes: A configuration is an EventEmitter that will emit modified keys upon changes.
  • Reloaders: Built-in support for detecting changes in configuration sources and actualizing the runtime configuration.
  • And everything supported by node-convict:
    • Loading and merging,
    • Nested structure,
    • Environmental variables,
    • Command-line arguments,
    • Validation,
    • Comments allowed,
    • Configuration file additional types support.

Install

npm install @nlv8/reconvict

Usage

An example config.js file:

var reconvict = require('@nlv8/reconvict');

// Define a schema
var config = reconvict({
  env: {
    doc: "The application environment.",
    format: ["production", "development", "test"],
    default: "development",
    env: "NODE_ENV"
  },
  greeting: {
    message: {
      doc: 'The greeting message presented to users.',
      format: String,
      default: 'Hello!'
    }
  },
  server: {
    ip: {
      doc: "The IP address to bind.",
      format: "ipaddress",
      default: "127.0.0.1",
      env: "IP_ADDRESS",
    },
    port: {
      doc: "The port to bind.",
      format: "port",
      default: 8080,
      env: "PORT",
      arg: "port"
    }
  }
});

// Load environment dependent configuration
var env = config.get('env');
config.loadFile('./config/' + env + '.json');

// Perform validation
config.validate({allowed: 'strict'});

module.exports = config;

An example server.js file leveraging the config.js file above:

var http = require('http');
var config = require('./config.js');

// Listening on changes like an absolute boss.
config.on('change', (changedKeys, config) => {
  console.log('Configuration changed! Changed keys and values:');

  changedKeys.forEach(key => {
    console.log(`${key}${config.get(key)}`)
  })
});

const greeting = config.get('greeting')

var server = http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  // Will magically change to the latest configuration value :)
  // However, you cannot modify it :O
  res.end(`${greeting.message}\n`);
});

server.listen(config.get('port'), config.get('ip'), function(x) {
  var addy = server.address();
  console.log('running on http://' + addy.address + ":" + addy.port);
});

// Let's make some change.
setTimeout(() => {
  config.set('greeting.message', 'Hola!');
}, 10000)

To launch your example server, and set a port:

node ./server.js --port 8080

Note: arguments must be supplied with the double-hyphen --arg. (Single hypen's are not supported at this time)

API

For the original node-convict methods, please see: node-convict/API.

config.forceLoad(object)

Works the same as load but will ignore environment variables and arguments originally given to the script.

config.forceLoadFile(file or fileArray)

Works the same as load but will ignore environment variables and arguments originally given to the script.

Keywords

FAQs

Package last updated on 12 Jul 2019

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc