/Knowledge/sources/honojs__hono/llms-full/next-js-pages-router--cf1f95447668.md
Next.js: Pages Router - hono-docs
Next.js: Pages Router Source evidence: /Sources/honojs hono/provenance.md Canonical citation: https://hono.dev/llms full.txt pages router Summary If you use...
Next.js: Pages Router
Source evidence: /Sources/honojs__hono/provenance.md Canonical citation: https://hono.dev/llms-full.txt#pages-router
Summary
If you use the Pages Router, you'll need to install the Node.js adapter first. ::: code-group sh [npm] npm i @hono/node-server sh [yarn] yarn add @hono/node-server sh [pnpm] pnpm add @hono/node-server ```sh [bun] bun...
Content
If you use the Pages Router, you'll need to install the Node.js adapter first.
::: code-group
npm i @hono/node-server
yarn add @hono/node-server
pnpm add @hono/node-server
bun add @hono/node-server
:::
Then, you can utilize the getRequestListener function imported from @hono/node-server in pages/api/[[...route]].ts.
import { getRequestListener } from '@hono/node-server'
import { Hono } from 'hono'
import type { PageConfig } from 'next'
export const config: PageConfig = {
api: {
bodyParser: false,
},
}
const app = new Hono().basePath('/api')
app.get('/hello', (c) => {
return c.json({
message: 'Hello Next.js!',
})
})
export default getRequestListener(app.fetch)
Metadata
{
"chunk_index": 0,
"citation": "https://hono.dev/llms-full.txt#pages-router",
"coverage_role": "overview",
"qualified_title": "Hono / llms-full / Next.js > Pages Router (1)",
"retrieved_at": "2026-07-02T05:51:01Z",
"section_index": 404,
"source_id": "/honojs/hono",
"source_type": "llms_full",
"target_label": "llms-full",
"title": "Next.js: Pages Router",
"upstream_url": "https://hono.dev/llms-full.txt",
"version": "2026"
}