harisvsulaiman / koa-nextjs

Use Koa middlewares with Nextjs api routes.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Nextjs Koa Compat

Overview

Use Koa middlewares with Nextjs api routes.

Getting started

yarn add koa-nextjs-compat

Usage

import KoaCompat from "koa-nextjs-compat";

const app = new KoaCompat().use((ctx, next) => {
  ctx.body = "Hello world! ๐Ÿ‘‹๐Ÿฝ";
});

export default app.handle();

Example

See Shopify Nextjs Starter

Contributing

We're open to all community contributions! If you'd like to contribute in any way.

License

MIT

About

Use Koa middlewares with Nextjs api routes.

License:MIT License


Languages

Language:JavaScript 100.0%