@joblocal/middy-json-api-parser
v1.0.1
Published
A middy middleware to parse JSON:API requests.
Downloads
2
Keywords
Readme
Middy JSON API Parser
This is a middy middleware, which is parsing AWS API Gateway events according to the JSON:API spec.
Installation
npm install @joblocal/middy-json-api-parser
Usage
# handler.js
const middy = require('middy');
const jsonApiParser = require('@joblocal/middy-json-api-parser');
const yourHandler = (event) => {
console.log(event.data);
};
const handler = middy(yourHandler)
.use(jsonApiParser());
module.exports = { handler };