Code Monkey home page Code Monkey logo

errors-handler's Introduction

errors-handler

Simple and efficient global errors handler that handle errors of development and production , you don't worry about leaking informations in the production

Installation

npm i errors-handler --save

Before using it :

Make sur you have a .env file contain NODE_ENV=development/production For now i use it for my self , it's very usefull but there is messings errors , so i appreciate your contributions :)

Use

In an Express-based application:

const  app = express();
const errorsHandler = require('errors-handler')
const sendError = require('errors-handler/appError');
//don't work without .env with variable NODE_ENV=production/development
require('dotenv').config(); 


// Setup your middlewares
// Setup your routes
app.get('/foo', async (req, res, next) => {
//Yout code here
// const doc = await Modal.find();
 if(!doc) return next(new sendError('error message here' , status code number here) 
 res.json({
 // your response here
 })
});

// the global error handler middleware 
app.use(errorsHandler);

Errors types

Error Type Error in Production
CastError Invalid path : value
ValidationError Duplicate field value : value . please choose anothor value
JsonWebTokenError Invalid token , please login again
TokenExpiredError Token expired , please login again

Options

Soon

errors-handler's People

Contributors

h4kim avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.