nextjs-koa-middleware
TypeScript icon, indicating that this package has built-in type declarations

2.3.0 • Public • Published

nextjs-koa-middleware

NextJS koa middleware

Codacy Badge CircleCI npm npm LICENSE Dependabot Status

System Requirements

Installation

# npm 
npm i nextjs-koa-middleware
# yarn 
yarn add nextjs-koa-middleware

Peer Dependency

Usage

  • Define environment variables:
NODE_ENV=development
 
# Relative path to .next directory 
NEXT_CLIENT_DIR=/
NEXT_CONFIG_PATH=/next.config.js
  • Define NextJS Routes:
import Router from 'koa-router';
import { handle, render, defaultReturn } from 'nextjs-koa-middleware';
 
const nextRouter = new Router();
 
nextRouter.use(defaultReturn());
nextRouter.get('/PagePath', render('pageComponentName'));
nextRouter.all('*', handleRoutes());
 
export default nextRouter;
  • Start koa server:
import koa from 'koa';
import nextRouter from './NextRouter';
 
const app = new Koa();
const port = process.env.PORT ?? 3000;
const host = process.env.HOST ?? 'localhost';
 
app.use(nextRouter.routes()).use(nextRouter.allowedMethods());
app.listen(port);
 
console.info(`listening on ${host}:${port}`);

License

Copylefted (c) 2020 Henrique Carvalho da Cruz Licensed under the MIT license.

/nextjs-koa-middleware/

    Package Sidebar

    Install

    npm i nextjs-koa-middleware

    Weekly Downloads

    1

    Version

    2.3.0

    License

    MIT

    Unpacked Size

    10.3 kB

    Total Files

    17

    Last publish

    Collaborators

    • henriquecarv