
Research
Supply Chain Attack on Axios Pulls Malicious Dependency from npm
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.
oseventlistener
Advanced tools
A simple modern a strong typed javascript library to subscribe, manage and dispatch events
A simple Typescript/VanillaJS Event Listener
You can check samples here: https://github.com/OrbintSoft/OSEventListener/blob/master/sample
If you checkout the git project you can run npm run server, to start a simple server and test the varius module loading.
Below the supported module loading systems
AMD: https://github.com/OrbintSoft/OSEventListener/blob/master/sample/amd.html
UMD: https://github.com/OrbintSoft/OSEventListener/blob/master/sample/umd.html
System.JS: https://github.com/OrbintSoft/OSEventListener/blob/master/sample/system.html
Browser / IIFE Bundle: https://github.com/OrbintSoft/OSEventListener/blob/master/sample/bundle.html
ES6: https://github.com/OrbintSoft/OSEventListener/blob/master/sample/es.html
NodeJs / CommonJS: https://github.com/OrbintSoft/OSEventListener/blob/master/sample/node_sample.cjs
NodeJs / ES module: https://github.com/OrbintSoft/OSEventListener/blob/master/sample/node_sample.mjs
Create an Event
const event = new EventListener('name');
Subscribe to an event
const fn = (sender, data) => {
console.log(data);
};
event.subscribe(fn);
Subscribe with key
event.subscribeWithKey((sender, data) => {
console.log(data);
}, 'logdata');
Unsubscribe to an event
event.unsubscribe(fn);
Unsubscribe with key
event.unsubscribeWithKey('logdata');
Dispatch an event
event.dispatch(this, 'my data');
For detailed doc, check here:
FAQs
A simple modern a strong typed javascript library to subscribe, manage and dispatch events
The npm package oseventlistener receives a total of 0 weekly downloads. As such, oseventlistener popularity was classified as not popular.
We found that oseventlistener 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
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.

Security News
TeamPCP is partnering with ransomware group Vect to turn open source supply chain attacks on tools like Trivy and LiteLLM into large-scale ransomware operations.