https://github.com/compwright/aws-serverless-koa
This library enables you to utilize AWS Lambda and Amazon API Gateway to respond to web and API requests using the Koa.js application framework
https://github.com/compwright/aws-serverless-koa
koa lambda serverless
Last synced: 17 days ago
JSON representation
This library enables you to utilize AWS Lambda and Amazon API Gateway to respond to web and API requests using the Koa.js application framework
- Host: GitHub
- URL: https://github.com/compwright/aws-serverless-koa
- Owner: compwright
- License: mit
- Created: 2018-09-03T17:41:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-12-16T15:59:34.000Z (over 4 years ago)
- Last Synced: 2025-04-11T14:11:27.376Z (20 days ago)
- Topics: koa, lambda, serverless
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/aws-serverless-koa
- Size: 6.84 KB
- Stars: 40
- Watchers: 2
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# aws-serverless-koa
This library enables you to utilize AWS Lambda and Amazon API Gateway to respond to web and API requests using the Koa.js application framework
## Installation
```bash
$ npm install --save aws-serverless-koa
```## Usage
```javascript
const Koa = require('koa');
const serverless = require('aws-serverless-koa');const app = new Koa();
app.use(async ctx => {
ctx.body = 'Hello, world!';
});module.exports.handler = serverless(app);
```## Middleware
This package includes middleware to easily get the event object Lambda receives from API Gateway (based on `aws-serverless-express/middleware`):
```
const awsServerlessKoaMiddleware = require('aws-serverless-koa/middleware');
app.use(awsServerlessKoaMiddleware());
app.use(ctx => {
ctx.body = ctx.apiGateway.event
});
```## License
MIT license