@wular/pnext
v0.1.0
Published
A fast little framework for server-first React apps, fully compatible with Next.js
Maintainers
Readme
pnext
A fast little framework for server-first React apps, fully compatible with Next.js.1
Getting started
pnext requires Bun - make sure it is installed first.
A new app:
bunx @wular/pnext@latest create my-appMigrating a Next.js app? This rewrites scripts and config in place, scans your source, and reports anything that needs a look (it never edits your code):
bunx @wular/pnext@latest migrateOr by hand: bun add -d @wular/pnext, then pnext dev.
Getting Started walks through all of it, from first page to build.
Incremental by design
Server-rendered pages ship 0 KB of JavaScript, or ~1 KB gzip if you want client-side navigation and prefetching. Interactive pages hydrate on Preact for ~7.5 KB of framework, ~12.5 KB with React compatibility. Everything is instant, the first page in dev renders 10–12× faster than Next.js on 3.5–4× less memory, and production builds run 7–9× faster. See Performance.
Core pnext is pure Preact. compat.react runs React components and libraries on it, and compat.next runs a whole Next.js App Router app unchanged. Start anywhere on that ladder and move when it suits you. The App Router compatibility is validated against Next's own test suite (4,400+ assertions passing). The pages/ folder or private internal utilities of Next.js or React are mostly not supported. See Compatibility.
A quick tour
Your first page
Routes live in app/. A page.tsx is a Server Component by default. It runs only on the server, so it can be async and talk to your database, filesystem, or internal services directly. None of that code reaches the browser:
// app/posts/[id]/page.tsx
import type { PageProps } from '#gen/app/posts/[id]/page'
export default async function Page({ params }: PageProps) {
const { id } = await params
const post = await db.post.findUnique({ where: { id } })
return (
<article>
<h1>{post.title}</h1>
<p>{post.body}</p>
</article>
)
}This page ships 0 KB of JavaScript. Layouts work the same way: the root layout.tsx owns <html> and <body> and can export metadata.
Adding interactivity
Mark a component with "use client" where you need state, effects, or event handlers. Server Components render it into the page, and only that island hydrates in the browser:
// app/counter.tsx
'use client'
import { useState } from 'preact/hooks'
export function Counter({ initial }: { initial: number }) {
const [count, setCount] = useState(initial)
return (
<button onClick={() => setCount(count + 1)}>Count {count}</button>
)
}Client Components hydrate on Preact for ~7.5 KB of framework, or ~12.5 KB with compat.react if you want to run React components and libraries unchanged. Offscreen islands can stay out of the initial bundle entirely with dynamic({ load: 'visible' }).
Streaming
Wrap slow server work in <Suspense>. The shell streams immediately and the content follows when it's ready:
import { Suspense } from '@wular/pnext'
export default function Page() {
return (
<Suspense fallback={<p>Loading comments…</p>}>
<Comments />
</Suspense>
)
}APIs and everything else
A route.ts file is an HTTP handler:
// app/api/users/route.ts
export async function GET(request: NextRequest) {
return Response.json(await listUsers())
}proxy.tsruns before route matching.loading.tsx,error.tsx, andnot-found.tsxdefine per-segment fallbacks.pnext buildmakes the production build andpnext startserves it. Routes that never read the request are prerendered to static HTML.
Learn more
Apps are file-routed from app/: page.tsx and layout.tsx are Server Components, route.ts files are HTTP handlers, public/ is served from /. The reference covers the rest:
