This package has been deprecated

Author message:

This module has moved and is now available at @tsed/exceptions

ts-httpexceptions
TypeScript icon, indicating that this package has built-in type declarations

4.1.0 • Public • Published

ts-httpexceptions

Build Status Coverage Status TypeScript Package Quality npm version Dependencies img img Known Vulnerabilities semantic-release

Provide Exceptions for REST API based on Express.js. Written in Typescript !

See guide installation and our API.

Features

Some HTTP Exceptions are already implemented :

Redirections (3xx):

  • MovedPermanently,
  • MovedTemporarily,
  • MultipleChoices,
  • NotModified,
  • PermanentRedirect,
  • SeeOther,
  • TemporaryRedirect,
  • TooManyRedirects,
  • UseProxy.

Client errors (4xx) :

  • BadMapping,
  • BadRequest,
  • Conflict,
  • ExpectationFailed,
  • Forbidden,
  • Gone,
  • ImATeapot,
  • LengthRequired,
  • MethodNotAllowed,
  • MisdirectedRequest,
  • NotAcceptable,
  • NotFound,
  • PaymentRequired,
  • PreconditionFailed,
  • PreconditionRequired,
  • ProxyAuthentificationRequired,
  • RequestedRandeUnsatifiable,
  • RequestTimeout,
  • RequestURITooLong,
  • TooManyRequests,
  • Unauthorized,
  • UnavailabledForLegalReasons,
  • UnsupportedMediaType,
  • UpgradeRequired.

Server errors (5xx) :

  • BadGateway,
  • BandwidthLimitExceeded,
  • GatewayTimeout,
  • InternalServerError,
  • NetworkAuthenticationRequired,
  • NotExtended,
  • NotImplemented,
  • ProxyError,
  • ServiceUnvailable,
  • VariantAlsoNegotiates.

You can use HTTPExceptions method to throw a custom Exception.

Installation

$ npm install -g typescript@2.0.2
$ npm install ts-httpexceptions

API

import {BadRequest, Exception, NotFound} from 'ts-httpexceptions';
const express = require('express');
const app = express();
 
app.get('/my/route/:id', async (req, res, next) => {
 if (req.params.id === undefined) {
   const error = new BadRequest("ID is required")
   
   // Additionally
   error.headers = {
     'x-header': 'value'
   }
   error.errors = [{'message': "ID is required"}]
   error.body = [{'message': "ID is required"}]
   
   next(error);
 }
 
 try {
   const user = await getUser(res.params.id)
   res.json(user);
 } catch(origin) {
   next(new NotFound('User not found',  origin))
 }
});
 
 
//GlobalHandler middleware catch exception and send response to the client
app.use((err, request, response, next) => {
 if(err instanceof Exception) {
   if (err.errors) { // If errors is provided
     response.set({'x-errors': JSON.stringify(err.errors)})
   }
   
   if (err.headers) {
     response.set(err.headers)
   }
   
   if (err.body) { // If a body is provided
     return response.status(err.status).json(err.body)
   }
   
   return response.status(err.status).send(err.message);
 }
 
 next()
});

Test

$ npm install -g mocha
$ npm test

License

The MIT License (MIT)

Copyright (c) 2016 Romain Lenzotti

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Package Sidebar

Install

npm i ts-httpexceptions

Weekly Downloads

2,229

Version

4.1.0

License

MIT

Unpacked Size

347 kB

Total Files

217

Last publish

Collaborators

  • romakita