An open API service indexing awesome lists of open source software.

https://github.com/maxdome/mxd-lambda

Provide express like API and using middlewares for AWS Lambda
https://github.com/maxdome/mxd-lambda

Last synced: about 1 year ago
JSON representation

Provide express like API and using middlewares for AWS Lambda

Awesome Lists containing this project

README

          

# Example

```javascript
const lambda = require('mxd-lambda')(logger);

lambda.use(require('mxd-cors')());

module.exports = {
example: lambda.function('example', (req, res) => {
res.send();
}),
};
```