Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
express-http-error
Advanced tools
An opinionated RESTful HTTP error handler intended for use in Express.
The primary role of an API is to ensure developer success. Therefore, we must provide an API that's easy to digest and provides appropriate guidance. RESTful APIs in particular must return errors must provide ample information to the developer so they can resolve their issue without having to read documentation or source code. Every error returned by a RESTful API should have the following properties:
When a required input is missing:
400 Bad Request
Content-Type: "application/json"
{
"errorCode": "missing_input",
"errorMessage": "A required input is missing. See more information in errorDetails.",
"errorDetails": {
"param": "catName",
"expected": {
"type": "cat"
}
},
"moreInfo": "https://wiki.example.org/api/missing_input-catName"
}
When the application's database returns an unexpected error:
500 Internal Server Error
Content-Type: "application/json"
{
"errorCode": "database_error",
"errorMessage": "The database encountered an unexpected error and the request could not be completed.",
"moreInfo": "https://wiki.example.org/api/database_error"
}
When your application is provided as a SaaS offering, you should also append a unique identifier to every error code to simplify your error investigation. With sufficient logging, this unique ID will allow you to find specific customer issues in a matter of seconds.
Providing a unique identifier:
500 Internal Server Error
Content-Type: "application/json"
{
"errorCode": "service_timeout",
"errorMessage": "A service did not respond to the request in time. See more information in errorDetails.",
"errorDetails": {
"service": "cart-service",
"timeout": 25000,
"payload": {
"sku": "YmFuYW5h",
"qty": 2
}
},
"moreInfo": "https://wiki.example.org/api/service_timeout",
"requestId": "ZG9uJ3QgZGVjb2RlIHRoaXM"
}
The source is available for download from GitHub. Alternatively, you can install using npm:
npm install --save http-error
You can then require()
http-error:
const { HTTPError, errorHandler } = require('http-error');
TODO
TODO
FAQs
Opinionated RESTful error handling for express.
The npm package express-http-error receives a total of 3 weekly downloads. As such, express-http-error popularity was classified as not popular.
We found that express-http-error demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.