catchi
v1.0.0-b
Published
🎉 An easy and light-weight solution to uncaught errors!
Maintainers
Readme
Catchi
🎉 An easy and light-weight solution to uncaught errors!
Usage
$ npm install catchiAfter installing catchi from your command line, import it into your javascript project.
require("catchi")();
setTimeout(() => {
console.log("still alive!");
}, 1000)
throw "uncaught error";output:
still alive!Arguments
require("catchi")(
callback?: (err: Error) => void,
exit?: boolean,
process?: NodeJS.Process
)