Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
event-handle
Advanced tools
JavaScript event pattern with closures.
npm install event-handle
or yarn add event-handle
import EventHandle from 'event-handle'; // ES6
import { // ES6 Functional Import
createEventHandle,
isEventHandle,
onEvent,
} from 'event-handle';
const EventHandle = require('event-handle'); // CommonJS / Node.js
// Create an event.
let demoStarted = EventHandle.create();
// Create a handler.
EventHandle.on(demoStarted, (...args) => {
console.log('The demo started!', args)
}); // options: , { prepend: false, once: false }
// Create another handler.
let remove = demoStarted.handle((...args) => {
console.log('Got it...', args);
});
// Trigger the event, calling all handlers.
demoStarted('a','r','g','s');
// Remove the handler.
console.log('removed: ', remove());
// Other functions:
console.log('handlerCount: ', demoStarted.handlerCount());
console.log('id: ', demoStarted.id); // defined if create was passed an id.
console.log('isEventHandle: ', EventHandle.isEventHandle(demoStarted));
console.log('removeAllHandlers: ', demoStarted.removeAllHandlers());
See also:
spec/index.spec.ts
examples/
FAQs
Events with closures.
The npm package event-handle receives a total of 0 weekly downloads. As such, event-handle popularity was classified as not popular.
We found that event-handle 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.