Package Exports
- error-inject
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (error-inject) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
error-inject
inject an error listener into a stream
Install
npm install error-injectUsage
var inject = require('error-inject');
function error(err) {
console.error(err);
}
var rs = fs.createReadStream('index.js');
inject(rs, err);License
MIT