Socket
Book a DemoInstallSign in
Socket

consul-utils

Package Overview
Dependencies
Maintainers
4
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

consul-utils

Consul utilities

1.8.1
latest
Source
npmnpm
Version published
Weekly downloads
8
100%
Maintainers
4
Weekly downloads
 
Created
Source

Consul Utilities

A set of utilities to work with consul from Node.js. Not full featured or architected well enough to call an API but a good start.

BuildStatus NPM version

Install

npm install consul-utils

Consul Utilities has no dependencies.

Example

The service class can be used in Redwire.

var RedWire = require('redwire');
var consul = require('consul-utils');

var redwire = new RedWire({ http: { port: 80 } });
var services = new consul.Service('localhost:8500', 'web', function(added, removed) {
  console.log(added.length + " added");
  console.log(removed.length + " removed");
});

redwire.http('example.com')
  .use(services.distribute())
  .use(redwire.proxy());

This code will monitor the service named 'web' from the consul server localhost:8500 and round-robin load balance to all current services, making sure to stop if they leave the cluster and start as they join.

The optional callback can be used for logging changes to the server pool.

TODO

  • Health Checks
  • Custom page when there are no servers

Keywords

consul

FAQs

Package last updated on 21 Jan 2016

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.