Socket
Socket
Sign inDemoInstall

http-error-types

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    http-error-types

WEB (HTTP) Response Status Codes enumeration which includes an HttpError class extending the javascript Error class.


Version published
Weekly downloads
3
Maintainers
1
Install size
9.67 kB
Created
Weekly downloads
 

Readme

Source

http-error-types

WEB (HTTP) Error Response Status Codes enumeration which includes an HttpError class extending the javascript Error class. Definintions are as per defined in Wikipedia (https://en.wikipedia.org/wiki/List_of_HTTP_status_codes)

Installation

npm i http-error-types --save

Enums

  • clientErrorCodes - These are lists of globaly accepted server side error codes
  • serverErrorCodes - These are lists of globaly accepted server side error codes

Sample use

const s: clientErrorCodes = clientErrorCodes.badRequest;

if (s === 500 || a === clientErrorCodes.unauthorized) {
  console.log('test');
}

HttpError class

This class extends the default Javascript Error by adding 2 properties and a cutom constructor

try{
  throw new HttpError(clientErrorCodes.unauthorized, 'Please log-in first');
} catch(err) {
  // note in Typescript, we cannot define the type of catch err.
  // We can however manualy check if it derives from a certain class instance
  if (err instaceof HttpError) {
    console.log(`Error (${err.statusCode}) ${err.statusName}: ${err.message}`);
    // this prints out the following:
    // "Error (401) unauthorized: Please log-in first
  }
}

Constructor parameters

  • clientErrorCodes | serverErrorCodes - The first parameter is either one of the error code enumerations
  • message - The error message to send similar to new Error(message)

Class properties

  • statusCode - The numeric error code value
  • statusName - The human readable error code value

Keywords

FAQs

Last updated on 19 Apr 2020

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc