
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
eventemitter-ts
Advanced tools
Typed EventEmitter classes for use with TypeScript.
npm install eventemitter-ts
All classes use the same interface as Node's built-in EventEmitter, but with generics for strict event types.
TypedEventEmitterimport { TypedEventEmitter } from 'eventemitter-ts';
interface Events {
'foo': number;
'bar': string;
}
const ee = new TypedEventEmitter<Events>();
ee.on('foo', (arg: number) => {}); // OK
ee.on('bar', (arg: string) => {}); // OK
ee.on('baz', (arg: number) => {}); // Error! 'baz' is not a valid event
ee.on('foo', (arg: string) => {}); // Error! 'foo' event does not emit argument of type string
ProtectedEventEmitterimport { ProtectedEventEmitter } from 'eventemitter-ts';
interface Events {
'foo': number;
'bar': string;
}
/**
* Emits 'foo' event once every second.
*/
class MyEventEmitter extends ProtectedEventEmitter<Events> {
constructor() {
super();
setInterval(() => {
this.protectedEmit('foo', 123);
}, 1000);
}
}
const ee = new MyEventEmitter();
ee.on('foo', (arg: number) => {}); // OK
ee.emit('foo', 123); // NOP -- doesn't do anything, always returns false
FAQs
Typed EventEmitter classes for use with TypeScript
We found that eventemitter-ts 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.