
Security News
Bun 1.2.19 Adds Isolated Installs for Better Monorepo Support
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
@everestate/serverless-router-aws
Advanced tools
Serverless Router plugin to handle http, streaming and other events at AWS λ
Serverless Router plugin to handle http, streaming and other events at AWS λ
npm install @everestate/serverless-router @everestate/serverless-router-aws --save
Steaming events from AWS DynamoDB.
const FOOBAR_TABLE_STREAM_ARN = 'arn:aws:dynamodb:us-west-2:111122223333:table/FooTable/stream/2015-05-11T21:21:33.291';
router.dynamodb
.insert(FOOBAR_TABLE_STREAM_ARN, (ctx, _event) =>
console.log(`New Foobar record inserted "${ctx.newItem}"`));
ctx
- routing context, it's content dependent on event type
event
- API gateway event, same as dispatch
receives
DynamoDB adapter implements insert
, modify
and remove
methods.
See the documentation for more details: docs/DynamoDB.md
HTTP Events from AWS API Gateway.
router.http
.get('/users/:id', (ctx, event) =>
console.log(`get user by id "${ctx.id}"`))
.post('/users', (ctx, event) =>
console.log(`create new user with attributes "${event.body}"`));
ctx
- routing context, object which contains path parameters (regexp tokens)
event
- API gateway event, same as dispatch
receives
HTTP adapter implements get
, post
, patch
, put
, delete
and all
methods.
See the documentation for more details: docs/HTTP.md
Steaming events from AWS SQS.
const FOOBAR_QUEUE_STREAM_ARN = 'arn:aws:sqs:us-west-2:594035263019:FOOBARQUEUE';
router.sqs
.messgage(FOOBAR_TABLE_STREAM_ARN, (ctx, _event) =>
console.log(`New nessage received"${ctx.messageAttribtues}"`));
ctx
- routing context, it contains the event payload
event
- message gateway event, same as dispatch
receives
SQS adapter implements message
method.
See the documentation for more details: docs/SQS.md
FAQs
Serverless Router plugin to handle http, streaming and other events at AWS λ
The npm package @everestate/serverless-router-aws receives a total of 22 weekly downloads. As such, @everestate/serverless-router-aws popularity was classified as not popular.
We found that @everestate/serverless-router-aws 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
Bun 1.2.19 introduces isolated installs for smoother monorepo workflows, along with performance boosts, new tooling, and key compatibility fixes.
Security News
Popular npm packages like eslint-config-prettier were compromised after a phishing attack stole a maintainer’s token, spreading malicious updates.
Security News
/Research
A phishing attack targeted developers using a typosquatted npm domain (npnjs.com) to steal credentials via fake login pages - watch out for similar scams.