🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@middy/sqs-json-body-parser

Package Overview
Dependencies
Maintainers
3
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@middy/sqs-json-body-parser

SQS batch json body parser middleware for the middy framework

2.5.7
latest
Source
npm
Version published
Maintainers
3
Created
Source

Middy sqs json body parsing middleware

Middy logo

SQS batch json body parsing middleware for the middy framework, the stylish Node.js middleware engine for AWS Lambda

npm version Known Vulnerabilities Standard Code Style Chat on Gitter

Middleware for iterating through a SQS batch of records and parsing the string body to a JSON body.

Install

To install this middleware you can use NPM:

npm install --save @middy/sqs-json-body-parser

Options

  • reviver (function) (optional): A function to be passed as the reviver for JSON.parse(text[, reviver]). If safeParse is provided then reviver will be passed to it and it is up the provided safeParse function to use it or ignore it.

Sample usage

import middy from '@middy/core'
import sqsJsonBodyParser from '@middy/sqs-json-body-parser'

const baseHandler = (event, context) => {
  const { Records } = event
  return Promise.all(Records.map(async (record, index) => { /* your message processing logic */ }))
}

const handler = middy(baseHandler).use(sqsJsonBodyParser())

Middy documentation and examples

For more documentation and examples, refers to the main Middy monorepo on GitHub or Middy official website.

Contributing

Everyone is very welcome to contribute to this repository. Feel free to raise issues or to submit Pull Requests.

License

Licensed under MIT License. Copyright (c) 2017-2021 Luciano Mammino, will Farrell, and the Middy team.

FOSSA Status

Keywords

Lambda

FAQs

Package last updated on 25 Jan 2022

Did you know?

Socket

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.

Install

Related posts