error-handler-module
This module provides a way to handle error in an express app with a few methods that creates error and an express error middleware handleHttpError
.
- Installation
- Basic Error types
- Methods
- Implementation example
- How to debug the errors
Installation
npm install --save error-handler-module
Basic Error types
We have setup some errors that we use often use in our projects and we store them in an object which is this:
const CustomErrorTypes = {
BAD_REQUEST: 'bad_request',
FORBIDDEN: 'forbidden',
NOT_FOUND: 'not_found',
OAS_VALIDATOR: 'OpenAPIUtilsError:response',
SWAGGER_VALIDATOR: 'swagger_validator',
UNAUTHORIZED: 'unauthorized',
WRONG_INPUT: 'wrong_input',
};
NOTE If you need another kind of error keep reading on tagError method.
Methods
errorFactory(type: String) => (message: String)
This function creates a custom Error with a type and a message you decide.
Example
const { errorFactory, CustomErrorTypes } = require('error-handler-module');
const wrongInputError = errorFactory(CustomErrorTypes.WRONG_INPUT);
wrongInputError('Error message');
const customTypeError = errorFactory('custom-type');
customTypeError('Error message');
handleHttpError(logger: Object, metrics: Object) => (err, req, res, next)
This is a function which will work as a middleware for your express app so that your errors will response with an HTTP response.
You have to pass logger and metrics objects as parameters (Metrics is not required).
Example
const express = require('express');
const { handleHttpError } = require('error-handler-module');
const app = express();
app.use(handleHttpError(logger, metrics));
tagError(error: Error, newTypes: Object)
This function is going to tag your errors from CustomError
to HTTPErrors
so that handleHttpError middleware will understand them.
It receives error and newTypes (not required)
NewTypes object
In order to add new error types, this object must match this structure:
const newTypes = {
<Error_type_string>: <status_code_number>,
<Error_type_string>: <status_code_number>,
...
};
Example
const { errorFactory } = require('error-handler-module');
const customTypeError = errorFactory('tea-pot-error');
const error = customTypeError('Error message');
const newTypes = {
'tea-pot-error': 418,
};
tagError(error, newTypes);
return next(tagError(error, newTypes))
const customTypeError = errorFactory(CustomErrorTypes.WRONG_INPUT);
const error = customTypeError('Error message');
tagError(error);
Implementation example
const express = require('express');
const {
CustomErrorTypes,
errorFactory,
handleHttpError,
tagError,
} = require('error-handler-module');
const app = express();
const loggerMock = {
error: () => '',
};
app.get('/test-error-basic', (req, res, next) => {
const wrongInputError = errorFactory(CustomErrorTypes.NOT_FOUND);
try {
throw wrongInputError('Wrong Input message');
} catch (error) {
return next(tagError(error));
}
});
app.get('/test-error-extended', (req, res, next) => {
const dbError = errorFactory('db-access-not-allowed');
const newErrors = {
'db-access-not-allowed': 401,
};
try {
throw dbError('db Error');
} catch (error) {
return next(tagError(error, newErrors));
}
});
app.use(handleHttpError(loggerMock));
module.exports = app;
Debug
This project uses Debug if you want more info of your error please run DEBUG=error-handler-module <Your_npm_script>
.