This package is for handling error in any type of Javascript application in an aspect oriented way.
npm install global-error-handler

npm install global-error-handler
`
Why would you need this?
Main idea of this implementation is to handle different types of errors in their
own custom way without introducing handler implementation to the code where you
throw the error.
You would reap the benefit of this package in an application that you would have
multiple types of errors and each of them has different way of being handled.
To understand better, see the _Usage_ section.
Usage
There are two ways of registering an ErrorHandler.
$3
`
// someMain.js
import { GlobalErrorHandler } from 'global-error-handler';
const globalErrorHandler = new GlobalErrorHandler();
const someHandler = error => {
// processing error code comes here
}
globalErrorHandler.register({
key: 'someKey',
handler: someHandler
})
// someComponent.js
const globalErrorHandler = require('./path/to/global-error-handler/instance')
globalErrorHandler.handle(new Error('Some Error'), 'someError');
...
const someError = { message: 'someError' };
globalErrorHandler.handle(someError, 'someError');
...
`
$3
You can also reigster an ErrorHandler by passing a class which inherits Error
class which is defined by default in Javascript.
This way you can have the benefit of being able to use throw keyword and make your app
catch the error and pass it to GlobalErrorHandler to handle it.
`
// someMain.js
import { GlobalErrorHandler } from 'global-error-handler';
const globalErrorHandler = new GlobalErrorHandler();
class SomeError extends Error {}
const someHandler = error => {
// processing error code comes here
}
globalErrorHandler.register({
key: SomeError,
handler: someHandler
})
// in a browser app
window.onerror = (message, url, line, column, error) => {
globalErrorHandler.handle(error);
};
// someComponent.js
const SomeError = require('./path/to/SomeError');
...
throw new SomeError('Some message');
...
``