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

1.0.0-alpha.29-reviver-0.2 • Public • Published

Middy http-json-body-parser middleware

Middy logo

HTTP json body parser middleware for the middy framework, the stylish Node.js middleware engine for AWS Lambda

This middleware automatically parses HTTP requests with a JSON body and converts the body into an object. Also handles gracefully broken JSON as UnprocessableEntity (422 errors) if used in combination with httpErrorHandler.

It can also be used in combination with validator as a prior step to normalize the event body input as an object so that the content can be validated.

Install

To install this middleware you can use NPM:

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

Options

This middleware does not have any option

Sample usage

const middy = require('@middy/core')
const httpJsonBodyParser = require('@middy/http-json-body-parser')

const handler = middy((event, context, cb) => {
  cb(null, {})
})

handler.use(httpJsonBodyParser())

// invokes the handler
const event = {
  headers: {
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({foo: 'bar'})
}
handler(event, {}, (_, body) => {
  expect(body).toEqual({foo: 'bar'})
})

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-2018 Luciano Mammino and the Middy team.

FOSSA Status

Dependencies (3)

Dev Dependencies (0)

    Package Sidebar

    Install

    npm i @env0/http-json-body-parser

    Weekly Downloads

    1

    Version

    1.0.0-alpha.29-reviver-0.2

    License

    MIT

    Unpacked Size

    8.88 kB

    Total Files

    8

    Last publish

    Collaborators

    • liron-env0
    • botenv0
    • eranelbaz
    • away168
    • razbensimon
    • roni-frantchi
    • omryhay
    • arelenv0
    • yaron-env0
    • avnerenv0
    • yossi-kerner
    • heverfarber.env0