Errors with status codes and more.
npm install @bluejay/rest-errors


Rest oriented set of errors.
- node >= 8.6, tested with:
- node@8.6.0
- node@12.8.1
- typescript >= 4.0, tested with:
- typescript@4.0.2
npm i @bluejay/rest-errors;
``typescript
import * as RestErrors from '@bluejay/rest-errors';
const err = new RestErrors.BadRequest('Something went wrong.', { some: { meta: 'data' } });
RestErrors.isRestError(err); // true
``
See Github Pages.