| Next.js 14 Adds Turbopack |
| Written by Kay Ewbank | |||
| Thursday, 02 November 2023 | |||
|
Next.js 14 has been released with a new turbopack and stable server actions. The updated version was announced at the annual Next.js Conf, where the team described Next.js 14 as their most focused release. Next.js is a page-based routing system with support for dynamic routes. It automatically statically optimizes pages when possible, and carries out server-side rendering of pages with blocking data requirements. |
Google Releases Gemini 3 Flash 23/12/2025 Google has "dropped", in the new sense of the term which means "launched", Gemini 3 Flash, the latest Google model. The Gemini team says Gemini 3 offers frontier intelligence and is built for speed at [ ... ] |
Deno 2.6 Adds NPM And JSR Tool 29/12/2025 Deno 2.6 has been released with a new tool, dx, that is an equivalent to npx and is a way to run binaries from npm and JSR packages. |
More News
|
Comments
or email your comment to: comments@i-programmer.info
Since Next.js 13, we've been working to improve local development performance in Next.js in both the Pages and App Router.
Previously, we were rewriting next dev and other parts of Next.js to support this effort. We have since changed our approach to be more incremental. This means our Rust-based compiler will reach stability soon, as we've refocused on supporting all Next.js features first.
5,000 integration tests for next dev are now passing with Turbopack
, our underlying Rust engine. These tests include 7 years of bug fixes and reproductions.
While testing on vercel.com, a large Next.js application, we've seen:
- Up to 53.3% faster local server startup
- Up to 94.7% faster code updates with Fast Refresh
This benchmark is a practical result of performance improvements you should expect with a large application (and large module graph). With 90% of tests for next dev now passing, you should see faster and more reliable performance consistently when using next dev --turbo.
Once we hit 100% of tests passing, we'll move Turbopack to stable in an upcoming minor release. We'll also continue to support using webpack for custom configurations and ecosystem plugins.


