consul-event-cache

1.0.1 • Public • Published

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)
  })

Readme

Keywords

none

Package Sidebar

Install

npm i consul-event-cache

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • ekristen