
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
express-default-errors
Advanced tools
Default ExpressJS error-handling middleware.
$ npm install express-default-errors
express-default-errors
provides simple middleware to catch default errors and serve custom errors.
var express = require('express')
var errorHandler = require('express-default-errors')
var app = express()
var router = express.Router()
// Valid route that will not cause any errors
router.get('/', function (req, res, next) {
res.status(200)
res.send('success')
})
// To signify unauthorized access, simple create a new Error object with status = 401
router.get('/restricted-route', function (req, res, next) {
var err = new Error()
err.status = 401
next(err)
})
// Custom error message
router.get('/error-route', function (req, res, next) {
// Will default to err.status = 500 unless err.status is explicitly set
var err = new Error('A custom error was caused.')
next(err)
})
// This is not recommended, but you could also set non-standard status codes.
// The default error message will be 'Internal Server Error' unless set.
router.get('/invalid-status-code-error-route', function (req, res, next) {
var err = new Error()
err.status = 299
next(err)
})
// Any errors will be sent with the appropriate status code by the response object as:
// {error: 'My error message here'}
// The error handler should be used after all routers
app.use(router)
app.use(errorHandler())
app.listen(3000)
Setting the status code will cause the middleware to serve default error messages when calling new Error()
without passing in any arguments, or if err.message
is not set.
Status Code | Default Message |
---|---|
400 | Bad Request |
401 | Unauthorized |
404 | Not Found |
500 | Internal Server Error |
MIT
FAQs
Default ExpressJS error-handling middleware.
The npm package express-default-errors receives a total of 0 weekly downloads. As such, express-default-errors popularity was classified as not popular.
We found that express-default-errors 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.