Skip to content

Latest commit

 

History

History
22 lines (13 loc) · 561 Bytes

README.md

File metadata and controls

22 lines (13 loc) · 561 Bytes

Lite HTTP Error ⛵

A minimalist error class for nodeJS

Getting Started

  • Install the package npm i lite-http-error
  • Then use it like any Error in JS but with Http Status code as second param.
  import HttpError from 'lite-http-error';

   if(thisIsMistake){
    throw new HttpError('Some dreadful message' , 500);
   }
  • Next add a middleware (if in express) it will catch this error and do the needful.

Refrence from Daniel Wagener's Blog