
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
consul-event-cache
Advanced tools
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.
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
Monitor consul events, trigger node event once per event
We found that consul-event-cache demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.