Skip to content

Instantly share code, notes, and snippets.

@Farenheith
Created February 22, 2020 16:51
Show Gist options
  • Save Farenheith/26dda8936ed446636fbba61e898fbd4e to your computer and use it in GitHub Desktop.
Save Farenheith/26dda8936ed446636fbba61e898fbd4e to your computer and use it in GitHub Desktop.
import { EventEmitter } from 'events';
export function eventEmitterExample(emitter: EventEmitter) {
emitter.on('somethingHappen', (x) => {
console.info(`Something happened! ${x}`);
});
emitter.on('sometingGoesWrong', (x) => {
console.error(`Something went wrong! ${x}`);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment