Koa2 & Next.js hydration packages
Usage
- Firstly setup a koa server entry
const NextKoa = require('next-koa')
const Koa = require('koa')
const Router = require('koa2-router')
const path = require('path')
const app = new Koa()
const router = new Router()
const nextApp = NextKoa({
dev: process.env.NODE_ENV !== 'production',
dir: path.resolve(__dirname, '..')
})
console.log(nextApp.nextConfig)
app.use(nextApp.middleware)
app.use((ctx, next) => {
ctx.state.homepage = '/'
return next()
})
app.use(router)
router.get('/about', ctx => ctx.render('about', { title: 'about us' }))
app.listen(3000)
- Then write your own next.js pages
import React from 'react'
import Head from 'next/head'
import Link from 'next/link'
import getInitialState from 'next-koa/getstate'
export default class AboutPage extends React.Component {
static async getInitialProps(ctx) {
const state = await getInitialState(ctx)
return state
}
render() {
return <>
<Head>
<title>{this.props.title}</title>
</Head>
<Link href={this.props.homepage}>
<a>Homepage</a>
</Link>
</>
}
}
- If you want next.js layout feature, just like this
import App from 'next-koa/app'
export default class CustomApp extends App {
}
- in order to make
next-koa/app
being packed by webpack,
we should use this plugin to include this module
const withNextKoaPlugin = require('next-koa/plugin')
module.exports = withNextKoaPlugin({
})
- Now we can export a Layout
import React from 'react'
import { withLayout } from 'next-koa/layout'
export default withLayout(({ children }: { children: React.ReactNode }) => {
return <section className='layout'>
<nav>
<ul>
{...}
</ul>
</nav>
<main className='container'>
{children}
</main>
</section>
})
- then we can use the layout above to decorate any pages
import React from 'react'
import withCustomLayout from '../layout'
const IndexPage: React.FC<any> =
export default withCustomLayout(IndexPage)