0.0.4 • Published 8 years ago

errc v0.0.4

Weekly downloads
21
License
MIT
Repository
github
Last release
8 years ago

errc

npm install Build Status Dependencies Status Known Vulnerabilities Downloads License

A different style of callbacks experiment written for an answer on Stack Overflow:

It allows you to register callbacks to standard Node functions that expect error-fist callback style, but use a different convention inside of your callback - the first argument to your callback will either be an instance of Error on failure (with its message field set to the original error) or the first non-error argument on success.

For code examples see node-errc-example on GitHub.

Installation

Install to use in your Node project, updating the dependencies in package.json:

npm install errc --save

Usage

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

fs.readFile('example2.txt', errc(function (data) {
  // here data is either an instance of Error on failure
  // or a real data on success
});

Issues

For any bug reports or feature requests please post an issue on GitHub.

Author

Rafał Pocztarski Follow on GitHub Follow on Twitter Follow on Stack Exchange

License

MIT License (Expat). See LICENSE.md for details.

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago

0.0.0

8 years ago