🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

emittable

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

emittable

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

0.0.6
latest
Source
npm
Version published
Weekly downloads
1
-75%
Maintainers
1
Weekly downloads
 
Created
Source

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())}

Keywords

event

FAQs

Package last updated on 20 May 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts