next-lambda

Serve next.js apps with AWS lambda

Usage no npm install needed!

<script type="module">
  import nextLambda from 'https://cdn.skypack.dev/next-lambda';
</script>

README

next-lambda

Serve next.js apps with AWS lambda

Based on @now/now-node-Bridge

Set target: "serverless" and deploy.

Usage:

const nextLambda = require("net-lambda");

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