Skip to content

Instantly share code, notes, and snippets.

@qawemlilo
Created February 17, 2013 12:50
Show Gist options
  • Save qawemlilo/4971367 to your computer and use it in GitHub Desktop.
Save qawemlilo/4971367 to your computer and use it in GitHub Desktop.
var EventEmitter = require('events').EventEmitter;
var e = Object.create(EventEmitter.prototype);
e.on('echo', console.log);
e.emit('echo', 'foo');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment