2.5.7 • Published 3 years ago

@middy/sqs-json-body-parser v2.5.7

Weekly downloads
4,564
License
MIT
Repository
github
Last release
3 years ago

Middy sqs json body parsing middleware

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.

2.5.6

3 years ago

2.5.5

3 years ago

2.5.7

3 years ago

2.5.4

4 years ago

2.5.3

4 years ago

2.5.2

4 years ago

2.5.1

4 years ago

2.5.0

4 years ago

2.4.3

4 years ago

2.4.2

4 years ago

2.4.1

4 years ago

2.4.0

4 years ago

2.3.0

4 years ago

2.2.0

4 years ago

2.1.1

4 years ago

2.1.0

4 years ago

2.0.1

4 years ago

2.0.0-beta.1

4 years ago

2.0.0

4 years ago

2.0.0-beta.0

4 years ago

2.0.0-alpha.6

4 years ago

2.0.0-alpha.5

4 years ago

2.0.0-alpha.4

4 years ago

2.0.0-alpha.3

4 years ago

2.0.0-alpha.2

4 years ago

2.0.0-alpha.0

4 years ago

2.0.0-alpha.1

4 years ago

1.5.2

4 years ago

1.5.1

4 years ago

1.5.0

5 years ago

1.3.2

5 years ago

1.4.0

5 years ago

1.3.1

5 years ago

1.3.0

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago

1.0.0-beta.11

5 years ago

1.0.0-beta.10

5 years ago

1.0.0-beta.9

5 years ago

1.0.0-beta.8

5 years ago