Skip to content

A Function Wrapper with promise-like syntax for callback chaining, using eventEmitters at its core.

Notifications You must be signed in to change notification settings

trever/emittable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Emittable

A Function Wrapper with promise-like syntax for callback chaining, using eventEmitters at its core.

Usage

npm install emittable

- OR -

git clone https://github.com/RebelMail/emittable.git
cd emittable
npm install
npm test
var Emittable = require('emittable');

fs.readFile
	.emit('./package.json')
	.then(msg)
	.catch(function(e){
		throw e;
	});

function msg(msg){console.log(msg.toString())}

About

A Function Wrapper with promise-like syntax for callback chaining, using eventEmitters at its core.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published