Package Exports
- log-process-errors
Readme
Show some ❤️ to Node.js process errors.
Node.js prints process errors
(uncaughtException,
warning,
unhandledRejection,
rejectionHandled)
on the console which is very useful. Unfortunately those errors:
- do not show stack traces for
warningandrejectionHandledmaking them hard to debug. - are inconvenient to log to an external service.
- are hard to test.
- cannot be conditionally skipped.
- are printed each time an error is repeated (except for
warning). - are not human-friendly.
log-process-errors fixes all those issues.
Without log-process-errors:

With log-process-errors:

Use cases
- Proper logging of process errors in production.
- Debugging of process errors in development.
- Automated testing of process errors.
Demo
You can try this library:
- either directly in your browser.
- or by executing the
examplesfiles in a terminal.
Install
Production code (e.g. a server) can install this either as a production or development dependency:
npm install log-process-errorsHowever, libraries should install this as a development dependency:
npm install -D log-process-errorsThis is because logging is modified globally and libraries users might not expect this side-effect. Also, this might lead to conflicts between libraries.
This package is an ES module and must be loaded using
an import or import() statement,
not require().
Usage
import logProcessErrors from 'log-process-errors'
logProcessErrors(options)logProcessErrors() should be called as early as possible in the code, before
other import statements.
Options
options is an optional object with the following properties.
log
Type: function(error, level, originalError)
Customizes how process errors are logged.
Full documentation.
level
Type: object
Default: { warning: 'warn', default: 'error' }
Which log level to use.
Full documentation.
exitOn
Type: string[]
Default: ['uncaughtException', 'unhandledRejection'] for Node >= 15.0.0, ['uncaughtException']
otherwise.
Which process errors should trigger process.exit(1).
Full documentation.
testing
Type: string
Value: 'ava', 'mocha', 'jasmine', 'tape' or 'node_tap'
Default: undefined
When running tests, makes them fail if there are any process errors.
Full documentation.
colors
Type: boolean
Default: true if the output is a terminal.
Colorizes messages.
Full documentation.
Support
For any question, don't hesitate to submit an issue on GitHub.
Everyone is welcome regardless of personal background. We enforce a Code of conduct in order to promote a positive and inclusive environment.
Contributing
This project was made with ❤️. The simplest way to give back is by starring and sharing it online.
If the documentation is unclear or has a typo, please click on the page's Edit
button (pencil icon) and suggest a correction.
If you would like to help us fix a bug or add a new feature, please check our guidelines. Pull requests are welcome!
Thanks go to our wonderful contributors:
ehmicky 💻 🎨 🤔 📖 |
Steven Vachon 💬 |
Hongarc 📖 💻 |
Andy Brenneke 🐛 |