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

https://github.com/ripeworks/next-lambda

Serve next.js apps with AWS lambda
https://github.com/ripeworks/next-lambda

Last synced: 18 days ago
JSON representation

Serve next.js apps with AWS lambda

Awesome Lists containing this project

README

          

# next-lambda
Serve next.js apps with AWS lambda

Based on @now/now-node-Bridge

Set `target: "serverless"` and deploy.

Usage:

```js
const nextLambda = require("next-lambda");

module.exports = nextLambda({
routes: {
"/": "/index",
"/blog/:name": "/blog"
}
});
```