Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
@middy/http-error-handler
Advanced tools
Http error handler middleware for the middy framework
HTTP error handler middleware for the middy framework, the stylish Node.js middleware engine for AWS Lambda
This middleware automatically handles uncaught errors that are created with
http-errors
and creates a proper HTTP response
for them (using the message and the status code provided by the error object).
It should be set as the last error handler.
To install this middleware you can use NPM:
npm install --save @middy/http-error-handler
logger
(defaults to console.error
) - a logging function that is invoked with the current error as an argument. You can pass false
if you don't want the logging to happen.const middy = require('@middy/core')
const httpErrorHandler = require('@middy/http-error-handler')
const handler = middy((event, context, cb) => {
throw new createError.UnprocessableEntity()
})
handler
.use(httpErrorHandler())
// when Lambda runs the handler...
handler({}, {}, (_, response) => {
expect(response).toEqual({
statusCode: 422,
body: 'Unprocessable Entity'
})
})
For more documentation and examples, refers to the main Middy monorepo on GitHub or Middy official website.
Everyone is very welcome to contribute to this repository. Feel free to raise issues or to submit Pull Requests.
Licensed under MIT License. Copyright (c) 2017-2018 Luciano Mammino and the Middy team.
FAQs
Http error handler middleware for the middy framework
The npm package @middy/http-error-handler receives a total of 0 weekly downloads. As such, @middy/http-error-handler popularity was classified as not popular.
We found that @middy/http-error-handler demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers 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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.