Socket
Book a DemoInstallSign in
Socket

errorhandler-express

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

errorhandler-express

An express middleware module to generate HTTP responses on error.

latest
Source
npmnpm
Version
1.0.8
Version published
Maintainers
1
Created
Source

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

Keywords

i18n

FAQs

Package last updated on 20 Apr 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts