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
- Host: GitHub
- URL: https://github.com/ripeworks/next-lambda
- Owner: ripeworks
- Created: 2019-01-31T04:42:02.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-10T21:50:13.000Z (over 7 years ago)
- Last Synced: 2025-10-08T10:01:42.564Z (8 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
});
```