1.0.0 • Published 12 years ago

classical-eventemitter v1.0.0

Weekly downloads
6
License
-
Repository
github
Last release
12 years ago

Classical

A wrapper for the NodeJS event manager using the classical OO style.

Documentation

Extending the Event Manager

var Server = EventManager.extend(function() {});

Usage

var foo = new Server;
foo.on('data', function(data) {
    console.log(data);
});
foo.emit('data', 'Hello, World.');