lambda-api
lambda-api copied to clipboard
Lightweight web framework for your serverless applications
The implementation is fairly simple on an Apache server, so I think adding a `Link` header might work in an APIG/Lambda environment. Maybe. Any thoughts on this are welcome.
After the latest release, the README.md file is getting a bit unwieldy. There are a lot of features now, and I like to give more examples and show potential use...
Hi, First of all thank you Jeremy for this project and dynamodb toolbox. Both are incredibly useful tools. I was wondering if this project is still maintained. What other routing...
closes #191
I have a route that either sends data gathered from a database or an image depending on an extension passed to the route: ``` /api/states/ma/cities/lenox returns JSON data about Lenox,...
By adding AWS packages as peerdependencies, the node_modules folder has increased from 164K to 8.5MB. To keep Lambda load-times quick and to be able to edit code in Lambda, I...
I have defined this path `/:v/schema.json` But on `/v1/schema.json` i get ``` {"error":"No such file"} ``` I think is because the automatic handling of versions. Ideas?
For typescript lambdas that use this library and don't use aws-lambda, we end up having this extra, unused dependency. I resolve by marking it external for my bundler and not...
i was forced to start using below, as of TS 4.5 ``` ts import createAPI, { NextFunction, Request, Response } from 'lambda-api'; const api = createAPI.default(); ``` createAPI is no...
Hi all, I just picked up lambda-api, and seems like its the perfect solution for my project; however, I have been struggling for hours trying to get CORS to work....