Skip to content

btford/qequire

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

qequire

Build Status

Promisify modules as you require them.

var qequire = require('qequire');
var fs = qequire('fs');

// methods on fs return promises
// how crazy is that?
fs.readFile('foo.txt').finally(console.log);

Warning: probably breaks stuff.

Why

Promises are useful when you have a chain of async tasks and want predictable error handling.

See Also

Q provides some nice helpers. If you only want to wrap some APIs, you might want to check them out.

License

MIT

About

Promisify modules as you require them.

Resources

Stars

Watchers

Forks

Packages

No packages published