Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
@middy/http-router
Advanced tools
HTTP router for the middy framework, the stylish Node.js middleware engine for AWS Lambda
You can read the documentation at: https://middy.js.org/docs/routers/http-router
This handler can route to requests to one of a nested hander based on method
and path
of an http event from API Gateway (REST or HTTP) or Elastic Load Balancer.
To install this middleware you can use NPM:
npm install --save @middy/http-router
routes
(array[{method, path, handler}]) (required): Array of route objects.
method
(string) (required): One of GET
, POST
, PUT
, PATCH
, DELETE
, OPTIONS
and ANY
that will match to any method passed inpath
(string) (required): AWS formatted path starting with /
. Variable: /{id}/
, Wildcard: /{proxy+}
handler
(function) (required): Any handler(event, context)
functionNOTES:
after
middleware stack of the former.import middy from '@middy/core'
import validatorMiddleware from '@middy/validator'
const getHandler = middy()
.use(validatorMiddleware({eventSchema: {...} }))
.handler((event, context) => {
return {
statusCode: 200,
body: '{...}'
}
})
const postHandler = middy()
.use(validatorMiddleware({eventSchema: {...} }))
.handler((event, context) => {
return {
statusCode: 200,
body: '{...}'
}
})
handler = middy()
.use(httpHeaderNormalizer())
.handler(httpRouterHandler([
{
method: 'GET',
path: '/user/{id}',
handler: getHandler
},
{
method: 'POST',
path: '/user',
handler: postHandler
}
]))
module.exports = { handler }
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-2022 Luciano Mammino, will Farrell, and the Middy team.
FAQs
HTTP event router for the middy framework
The npm package @middy/http-router receives a total of 9,712 weekly downloads. As such, @middy/http-router popularity was classified as popular.
We found that @middy/http-router demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.