npm install --save lambda-assistant
import { ApiGateway } from 'lambda-assistant';
export function handler(event, context, callback) {
const body = ApiGateway.Event.getBody();
return callback(null, ApiGateway.Callback.ok(body));
}
Released under the MIT License.