throw.js

HTTP Error collection to use in your next REST API.

Github星跟踪图

throw.js

An HTTP Error collection to use in your next REST API.

Installation

npm install --save throw.js

Example

const express = require('express');
const app = express();
const errors = require('throw.js');
const logger = require('winston');

app.get('/', (req, res, next) => {
  next(new errors.NotFound());
});

app.use((err, req, res, next) => {
  logger.error(err);
    
  if (req.app.get('env') !== 'development' && req.app.get('env') !== 'test') {
    delete err.stack;
  }
  
  res.status(err.statusCode, 500).json(err);
});

app.listen(3000);

Custom Errors

const errors = require('throw.js');

errors.CustomError(slug, message, statusCode, errorCode);

Parameters:

  • slug[optional]: A unique identifier of this error
  • message[optional]: Detailed message of this error
  • statusCode[optional]: The HTTP Status number to return
  • errorCode[optional]: An internal unique code identifier of this error

Errors

All of the classes below have all parameters set up by default, based on RFC7231.
But you can override the message and the errorCode to fit your for personal needs.

400 Bad Request

errors.BadRequest(message, errorCode);

401 Unauthorized

errors.Unauthorized(message, errorCode);

402 Payment Required

errors.PaymentRequired(message, errorCode);

403 Forbidden

errors.Forbidden(message, errorCode);

404 Not Found

errors.NotFound(message, errorCode);

405 Method Not Allowed

errors.MethodNotAllowed(message, errorCode);

406 Not Acceptable

errors.NotAcceptable(message, errorCode);

407 Proxy Authentication Required

errors.ProxyAuthenticationRequired(message, errorCode);

408 Request Timeout

errors.RequestTimeout(message, errorCode);

409 Conflict

errors.Conflict(message, errorCode);

410 Gone

errors.Gone(message, errorCode);

422 Unprocessable Entity

errors.UnprocessableEntity(message, errorCode);

424 Failed Dependency

errors.FailedDependency(message, errorCode);

500 Internal Server Error

errors.InternalServerError(message, errorCode);

501 Not Implemented

errors.NotImplemented(message, errorCode);

502 Bad Gateway

errors.BadGateway(message, errorCode);

503 Service Unavailable

errors.ServiceUnavailable(message, errorCode);

504 Gateway Timeout

errors.GatewayTimeout(message, errorCode);

505 HTTP Version Not Supported

errors.HttpVersionNotSupported(message, errorCode);

511 Network Authentication Required

errors.NetworkAuthenticationRequired(message, errorCode);

TODO

  • Implement more Error Classes

主要指标

概览
名称与所有者kbariotis/throw.js
主编程语言TypeScript
编程语言TypeScript (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2015-04-24 18:36:31
推送于2021-01-11 19:08:19
最后一次提交2021-01-11 21:08:13
发布数6
最新版本名称v4.1 (发布于 )
第一版名称v1.0 (发布于 )
用户参与
星数275
关注者数5
派生数18
提交数56
已启用问题?
问题数16
打开的问题数0
拉请求数7
打开的拉请求数0
关闭的拉请求数1
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?