Getting started
Turbopack is an incremental bundler optimized for JavaScript and TypeScript, written in Rust by the creators of webpack and Next.js at Vercel.
The secret to Turbopack's performance is twofold: highly optimized machine code and a low-level incremental computation engine that enables caching down to the level of individual functions. Once Turbopack performs a task it never does it again.
Our team has taken the lessons from 10 years of webpack, combined with the innovations in incremental computation from Turborepo and Google's Bazel, and created an architecture ready to support the coming decades of computing.
Turbopack is available for the Next.js development server. You can try out Turbopack today by adding the --turbopack
flag to your next dev
command.
To report an issue, please use the issue template in the Next.js repository. We appreciate your feedback.
Note: Production builds with next build
are not yet supported.
Quickstart
As of today, Turbopack can be used in Next.js 15. In the future, we will be releasing a standalone CLI, plugin API, and support for other frameworks such as Svelte and Vue. For now, please follow these instructions to get started:
New Projects
- Create a Next.js 14 project with Turbopack:
- Start the Next.js development server (with Turbopack):
The Next.js development server is now powered by Turbopack! Startup and updates should both be near-instant. The larger the application, the larger the improvement will be.
Existing Projects
Add --turbopack
to your next dev
command:
Next Steps
Want to learn more about Turbopack? Here's a deep dive on what we think makes it special.