Package Exports
- herro
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 (herro) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Write package's versions and names directly on the stack already.
Say you have this stack.
What if looked like this?
What it was done:
- Change
node_modules/moduleNamewithmoduleName@version - Change
my-project-pathwithmy-project-path@version. That is, on the screenshot above you see runtime@0.1.28-docs-2 instead of/home/jcm/code/runtime. If you want that changed write. - Add an
archbadge at the bottom showing what node was running when that happened. - Add a
sourcepointing to the first ocurrence of anode_moduleon the stack.
install
npm install herro --saveusage
Out of the package you get a plain old Herror class that only takes one argument (the message to be written).
var Herror = require('herro').Herror;Just use it as you normally would with Error and you'll get stack traces like above.
Also, if you want to enforce any v8 stacktrace to have the package names and versions written there is a flag you can use for that
export ERROR_FLOOD=trueBesides of the simple Herror class there are two methods to easily customize your errors (see the api section below).
var herro = require('herro');
herro.set('my-custom-error', function(err){
err.message = error.message + ' with orange juice please';
return err;
});
var myErrorClass = herror.get('my-custom-error');
throw new myErrorClass('Excuse me dear, I would fancy coffee and toasts');
// or also
throw new herror.get('my-custom-error', 'Excuse me dear, I would fancy coffee and toasts')which as you would guess will throw
throw new myErrorClass('Excuse me dear, I would fancy coffee and toasts')
^
Error: Excuse me dear, I would fancy coffee and toasts with orange juice please
source: herro@0.0.16/lib/herro.js:103:19
--
> new errorClass (herro@0.0.16/lib/herro.js:103:19)
at Object.<anonymous> (herro@0.0.16/test/test.Herror.set.js:47:7)
at Module._compile (module.js:456:26)
at Object.Module._extensions..js (module.js:474:10)
at Module.load (module.js:356:32)
at Function.Module._load (module.js:312:12)
at Function.Module.runMain (module.js:497:10)
at startup (node.js:119:16)
at node.js:906:3
--
node@0.10.30api
herro.Herror
Inherits from Error an error class with formatted stack trace. You can call it with and without new.
Herror.call or apply will expect you to use an Error instance for this.
That is:
var herro = require('herro').Herror;
var myThing = {};
Herror.call(myThing)
Herror.apply(myTHing)
// Both above will throw an errorherro.set(name, handle)
Set your error classes here. Chainable method.
name: astringor anobjecthandle: afunction
If name is a string then handle should be a function. If handle is not given name is expected to be an object. Sugar for this:
herro
.set('my-error', function(err){
err.message = ' argument `'+err.message+'` not supported';
return err;
}).set('other error', function(err){
err.message = ' go out and take some beers already!'
return err;
})
// the above is equivalent to
herro.set({
'my-error' : function(err){
err.message = ' argument `'+err.message+'` not supported';
return err;
},
'other error' : function(err){
err.message = ' go out and take some beers already!'
return err;
}
})
All classes inherit from Herror if you want that changed let me know.
herro.get(name[, message])
Get the errorClass you set with herro.set
name: astringmessage: optionalstringmessage.
If message is not given returns your errorClass name.
If message is given returns an error instance of that errorClass name.
flags
Enforce all stack traces to show package versions:
export ERROR_FLOOD=true && node index.jsShut up all the way down
export NO_FLAGS && node index.jsThe above in case anyone left process.env.ERROR_FLOOD = true written somewhere.
tests
make testor
npm testtodo
- make more tests.
- more interfaces for error instances (like
Herror.streamorHerror.catch) that would be helpful to have.



