
Security News
The Next Open Source Security Race: Triage at Machine Speed
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.
Easily send errors in Node.js HTTP servers. Think like the `ErrorDocument` declarations in Apache config files.
Easily send errors in Node.js HTTP servers.
Think like the ErrorDocument declarations in Apache config files.
var ErrorPage = require('error-page')
http.createServer(function (req, res) {
// returns a function that we use to send error responses
res.error = ErrorPage(req, res, { // options
404: the404HandlerFunction,
5xx: handleAll500s,
403: 'forbidden.ejs', // template name integrates with Templar
400: 'that was bad', // other strings just print out as-is
"*": handleEverythingElse
debug: false // show full stack traces, or just messages
})
// .. some time later ..
// .. we've decided that the page doesn't exist ..
return res.error(404)
// or maybe we decided that the request method is no good...
// Give a little extra bit on the message.
return res.error(405, "Allowed methods: GET, POST, HEAD")
// or maybe they just need to try again in 10 seconds
return res.error(503, {'retry-after':10})
// or maybe we are a teapot
return res.error(418)
// or maybe something threw
try {
blerg()
} catch (er) {
return res.error(er)
}
})
Any arguments to the res.error function will be interpreted based on
their type:
res.template from
Templar, and it's a valid
template name, then it'll use the template as the handler.message
property on the Error object, if one was supplied, or the default
message associated with the status code.)The handler (or template) is called with the request and response
objects, and a data object containing:
data = { message: message
, code: code
, statusCode: code
, error: er
, options: opts
, request: req.method + ' ' + req.url
, headers: req.headers
, url: req.url
}
FAQs
Easily send errors in Node.js HTTP servers. Think like the `ErrorDocument` declarations in Apache config files.
The npm package error-page receives a total of 37 weekly downloads. As such, error-page popularity was classified as not popular.
We found that error-page 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
Claude Opus 4.6 has uncovered more than 500 open source vulnerabilities, raising new considerations for disclosure, triage, and patching at scale.

Research
/Security News
Malicious dYdX client packages were published to npm and PyPI after a maintainer compromise, enabling wallet credential theft and remote code execution.

Security News
gem.coop is testing registry-level dependency cooldowns to limit exposure during the brief window when malicious gems are most likely to spread.