Vinext Landing Page

March 1, 2026 · View on GitHub

A community-built landing page for vinext — the Vite plugin that reimplements the Next.js API surface.

This repository is not affiliated with, endorsed by, or officially maintained by Cloudflare.


About vinext

vinext reimplements the Next.js API on Vite — routing, SSR, React Server Components, server actions, and more. Key features include:

  • Agent Skill for migration — Works with Cursor, Claude Code, OpenCode, Codex, and other AI coding tools. Run npx skills add cloudflare/vinext and say "migrate this project to vinext".
  • Cloudflare Workers deployment — Single vinext deploy command, zero cold starts.
  • 94% API coverage — Your existing Next.js code works with minimal changes.

From Pandito, with admiration

Pandito is a small startup that has always admired Cloudflare. We've watched from the sidelines as they've built in the open — making the internet faster, safer, and more resilient for everyone. When they announced vinext, rebuilt in a week with AI, we felt that same spark of possibility: the future of software development is being written in real time.

This landing page is our humble contribution. It's a love letter to the team that dared to reimplement Next.js on Vite. To the engineers who believe that great APIs deserve great foundations. And to everyone who keeps building, shipping, and pushing the web forward.

We're doing our small part. We hope it helps.


Requirements

  • Node.js 22+ — vinext uses fs.promises.glob, available only in Node 22+

Quick start

# 1. Use Node 22+ (required)
nvm use 22          # if you use nvm and have Node 22 installed
# or: nvm install 22 && nvm use 22
# or: fnm use       # if you use fnm (reads .nvmrc)

# 2. Install dependencies
pnpm install
# or: npm install

# 3. Start the dev server
pnpm dev

Open http://localhost:3000.

Installing Node 22

ToolCommand
nvmnvm install 22 && nvm use 22
fnmfnm install 22 && fnm use
Homebrewbrew install node@22

Scripts

CommandDescription
pnpm devStart dev server with HMR
pnpm buildProduction build
pnpm startStart production server
pnpm deployBuild and deploy to Workers


With love by Pandito