
Security News
OpenGrep Restores Fingerprinting in JSON and SARIF Outputs
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
A library for interfacing with EventsD
var EventsD = require('eventsd');
var events = new EventsD();
events.send('myEvent', 'some message', function (err) {
if (err) {
// an error occurred
}
// do something after event was sent
});
var options = {
host: '127.0.0.1',
port: 8150,
appName: 'myApp',
environment: 'development'
};
var events = new EventsD(options);
host
SZ_EVENTSD_HOST | '127.0.0.1'
port
SZ_EVENTSD_HOST | 8150
appName
SZ_EVENTSD_APP_NAME | SZ_APP_NAME | process.title | 'unknown'
environment
SZ_EVENTSD_ENV | SZ_ENV | 'unknown'
Environment variables set default values for the EventsD options. Override them by passing options to new EventsD()
SZ_EVENTSD_HOST: the EventsD host to connect to
SZ_EVENTSD_PORT: the port the EventsD server is listening on
SZ_EVENTSD_APP_NAME | SZ_APP_NAME: the name of the application sending the event
SZ_EVENTSD_ENV | SZ_ENV: the name of the environment that the event is in
npm test
====================
See LICENSE for the full license text.
FAQs
A library for interfacing with EventsD
The npm package eventsd receives a total of 6 weekly downloads. As such, eventsd popularity was classified as not popular.
We found that eventsd 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
OpenGrep has restored fingerprint and metavariable support in JSON and SARIF outputs, making static analysis more effective for CI/CD security automation.
Security News
Security experts warn that recent classification changes obscure the true scope of the NVD backlog as CVE volume hits all-time highs.
Security Fundamentals
Attackers use obfuscation to hide malware in open source packages. Learn how to spot these techniques across npm, PyPI, Maven, and more.