Socket
Socket
Sign inDemoInstall

consul-event-cache

Package Overview
Dependencies
24
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    consul-event-cache

Monitor consul events, trigger node event once per event


Version published
Maintainers
1
Install size
870 kB
Created

Readme

Source

node-consul-event-cache

Build Status David David npm npm npm

This is designed to be used with node-consul and the watch command with consul.event.list this library turns each event received into an node event, and keeps track so duplicates are not sent.

If multiple events are received with single update, the cache library will trigger 2 separate change events.

Example

var consul = require('consul')()

var EventCache = require('consul-event-cache')

var cache = new EventCache()

consul
  .watch({
    method: consul.event.list
  })
  .on('error', function(err) {
    console.log('error', err)
  })
  .on('change', cache.update.bind(cache))

cache
  .on('error', function(err) {
    console.log('error', err)
  })
  .on('change', function(event) {
    // a single event
    console.log(event)
  })

FAQs

Last updated on 15 Jan 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc