Emitting event in Node.js
问题 I'm trying to teach myself both javascript and nodejs at the same time here and have not been able to get custom event emitting working. I am not receiving any errors, just not seeing the event being emitted. Is someone able to point out my (likely obvious) logical error? I have a class declared in a separate module: var util = require( 'util' ), events = require( 'events' ); function logger(){ var logpath, initialised, logstream; events.EventEmitter.call(this); } util.inherits(logger, events