@middy/sqs-json-body-parser
TypeScript icon, indicating that this package has built-in type declarations

2.5.7 • Public • Published

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

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

Package Sidebar

Install

npm i @middy/sqs-json-body-parser

Weekly Downloads

8,185

Version

2.5.7

License

MIT

Unpacked Size

6.36 kB

Total Files

5

Last publish

Collaborators

  • lmammino
  • middyjs
  • willfarrell