errorhandler-express

1.0.8 • Public • Published

errorhandler-express

An express middleware module to generate HTTP responses on error.

TODO: Pending add more checks, test and documentation

Installation

The best way to install it is using npm

npm install errorhandler-express --save

Loading

var apiSetter = require('errorhandler-express');

Initialization and Usage

Basic usage (you can see how works better with test:

    app = express();
    var options = {
        errors : {
            app : {
                user : {
                    myOwnError : {
                        status : 401,
                        msg : "you can't see me"
                    }
                }
            }
        }
    };
    var kError = require('../index')(options);
 
    app.get('/error1', function (req, res, next) {
        next(kError.createError("http.badRequest"));
    });
 
    app.get('/error2', function (req, res, next) {
        next(kError.createError("app.user.myOwnError", {detail: new Date()}));
    });
 
 
    app.use(kError.errorHandling)
 

Support

This plugin is proudly supported by Kubide hi@kubide.es

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.8
    1
    • latest

Version History

Package Sidebar

Install

npm i errorhandler-express

Weekly Downloads

1

Version

1.0.8

License

MIT

Last publish

Collaborators

  • jolorenzom
  • gelito
  • dev.kubide