Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

commissioner

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

commissioner

Configuration helper for node.js services running with consul and/or Docker

  • 2.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
18
increased by500%
Maintainers
1
Weekly downloads
 
Created
Source

commissioner

Build Status Version

commissioner is a small configuration helper for node.js services. It will help you if meet the following:

  1. use Docker/Docker Compose (linked containers),
  2. and/or use consul for service discovery,
  3. you don't want to care about environment in which you application runs, you just want to get IP and port of dependent service.

Example

var service_name = 'redis';
var service_port = 6379;

commisioner(service_name, service_port, function(err, records) {
  console.log(records[0].addr);
  console.log(records[0].port);
});

or with fallback

var options = {
  fallbackAddr: 'localhost',
  fallbackPort: 6379
};

commisioner(service_name, service_port, options, function(err, records) {
  console.log(records[0].addr);
  console.log(records[0].port);
});

Strategy

  1. Query DNS (SRV) for <service_name>.consul.service and return records, if not found goto #2.
  2. Query DNS (SRV) for <service_name>-<port>.consul.service and return records, if not found goto 3.
  3. Get ADDR/PORT from ENV (Environment Variables in container) and return, if not found goto 4.
  4. if fallback ADDR and PORT passed, return them, otherwise return error.

Keywords

FAQs

Package last updated on 12 May 2015

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