EventEmitter is a core Node class implementing the publish/subscribe pattern: objects emit named events, and listeners registered for those events run when they fire. Much of Node's own API (streams, HTTP servers, process) is built on it.
Basic usage
{ } ;
emitter = ();
emitter.(, {
.();
});
emitter.(, { : });
