Giter VIP home page Giter VIP logo

errorlet's Introduction

Errorlet - a simple customer error library

A simple custom error library for you to use more than just an error message string, because a string sometimes just isn't enough.

Install

npm install errorlet

Usage

var errorlet = require('errorlet');

// make a custom error and throw it.
throw errorlet.create({error: 'http_error:not_found', message: 'this is the custom error message', httpCode: 404});

// you can directly raise it as well instead of using throw.
// the stack will be the same as if you call throw.
errorlet.raise({error: 'error_code', message: 'this is the custom error message'});

// you can also do it in async fashion.
// the stack will be the same as if you call throw.
errorlet.raiseAsync({error: 'async_error', message: 'you should see this error in the callback'}, function (err) {
  console.log(err);
});

By default, you can set the name of the error object via error or name key. If you are used to constructing error objects for JSON API, chances are this approach will look familiar to you.

message field can be passed in, or if you leave it out, it will be constructed out of the JSON serialization of the object you passed in.

errorlet's People

Contributors

yinso 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.