Servie transport for AWS lambda proxy.
npm install servie-lambda --save
Wrap a standard Servie middleware function in createHandler to return a AWS Lambda handler.
import{createHandler}from"servie-lambda";import{compose}from"throwback";import{get}from"servie-route";exportconsthandler=createHandler(compose([get("/test",req=>newResponse("hello world"))]));This project is written using TypeScript and publishes the definitions directly to NPM.
Apache 2.0