Ready-use adapters (resolvers and body parsers) for AWS Lambda Proxy integration
npm install aws-lambda-adapters




AWS Lambda Adapters
=============
Ready-use adapters (resolvers and body parsers) for AWS Lambda Proxy integration
AWS Lambda Proxy integration for API gateway on AWS has a fixed structure for getting request and returning response. However, this structure needs some ready-use adapters, converters and parsers so that AWS Lambda adapters can provide you with efficient input and output.
For better performance, you must use "Use Lambda Proxy integration" for your dependent API gateway with lambda function.
Using npm:
``bash`
$ npm install aws-lambda-adapters
`js
const { response } = require('aws-lambda-adapters');
// passes response configs as an object.
response.success({});
response.error({});
`
#### Success Config
`js`
{
// 'data' is thing that you want to send to client. It is empty object as default.
data = {},
// 'code' is HTTP response code. It is 200 as default.
code = 200,
// 'message' is string that you want to give information about response. It is 'Success' as default.
message = 'Success'
}
#### Error Config
`js`
{
// 'code' is HTTP response code. It is 400 as default.
code = 400,
// 'message' is string that you want to give information about error. It is 'Something went wrong' as default.
message = 'Something went wrong'
}
`js
const { request } = require('aws-lambda-adapters');
// passes event parameter to request function as a parameter
const { body } = request(event);
// it is JSON anymore.
``