search
HomeWeb Front-endJS TutorialNextJs Stable Version Is Here : What&#s New?

NextJs Stable Version Is Here : What

Next.js just dropped a game-changing bombshell, releasing the stable version of Next.js 15 before the Next.js Conf – and it's absolutely insane! ?

Here are some of the mind-blowing new updates and features packed into Next.js 15:

  • Improved Upgrades with @next/codemod CLI: Next.js 15 includes a new codemod CLI that makes it easier to upgrade to the latest Next.js and React versions. The CLI updates dependencies, shows available codemods, and provides guidance on applying them.
  • Async Request APIs: APIs that depend on request-specific data, such as headers, cookies, params, and searchParams, have transitioned to be asynchronous. This change affects APIs like cookies, headers, draftMode, params (in various contexts), and searchParams. This is a breaking change but a codemod is available to help with migration.
  • Changes in Caching Semantics: Next.js 15 changes the default caching behavior for fetch requests, GET Route Handlers, and Client Router Cache. These are now uncached by default. You can opt into caching if needed.
    • fetch requests now use no-store as the default cache option, meaning they are not cached by default. You can opt into caching by setting the cache option to force-cache.
    • GET Route Handlers are also not cached by default. You can opt into caching using static route config options.
    • Client Router Cache no longer caches Page components by default. You can revert to the previous behavior by setting the staleTime in next.config.ts.
  • React 19 Support: Next.js 15 supports React 19, including the experimental React Compiler.
    • The App Router uses React 19 RC, while backward compatibility for React 18 is maintained for the Pages Router. Using React 18 for the Pages Router and React 19 for the App Router in the same application is not recommended due to potential inconsistencies.
    • The React Compiler aims to simplify code by reducing manual memoization, but it is still experimental and may result in slower build times.
  • Stable Turbopack Dev: Turbopack, the new Rust-based build system, is now stable in development mode (next dev --turbo). It offers significant performance improvements in server startup, Fast Refresh, and initial route compilation.
  • Static Route Indicator: This new visual indicator helps identify static and dynamic routes during development.
  • unstable_after API: The unstable_after API allows code execution after a response has finished streaming, which is particularly helpful for tasks that don't need to block the user, like logging and analytics.
  • instrumentation.js API: This API allows developers to monitor Next.js server lifecycle events, which is helpful for performance tracking and error analysis.
  • Enhancements to Forms with the
    Component
    : The new
    component simplifies form handling with features like prefetching, client-side navigation, and progressive enhancement.
  • TypeScript Support in next.config.ts: Next.js 15 supports a TypeScript next.config.ts file, offering type safety and autocompletion for configuration options.
  • Self-hosting Improvements: Next.js 15 provides more control over Cache-Control headers for self-hosting, simplifies image optimization by automatically using sharp, and includes a demo and tutorial video on self-hosting.
  • Enhanced Server Action Security: Next.js now eliminates unused Server Actions during the build process and utilizes unpredictable IDs for client-side references, enhancing security.
  • Bundling External Packages: Next.js 15 provides more consistent configuration options for bundling external packages across both the App and Pages Routers. The serverExternalPackages option allows for unified management.
  • ESLint 9 Support: Next.js 15 introduces support for ESLint 9 while maintaining backward compatibility with ESLint 8. The update also includes deprecated option removal in next lint and an upgrade to eslint-plugin-react-hooks to version 5.0.0.
  • Development and Build Improvements:
    • Improved Server Components Hot Module Replacement (HMR) to enhance local development performance.
    • Faster static generation in the App Router through optimized rendering processes and shared fetch caches among workers.
    • Introduction of experimental static generation controls for advanced use cases, but these require caution as they might lead to increased resource consumption.
  • Miscellaneous:
    • Breaking changes and improvements across different areas like next/image, Middleware, next/font, caching, configuration options, Speed Insights, sitemaps, dynamic routes, revalidation, and more.
    • General improvements in metadata handling, tree-shaking, parallel routes, error handling, prefetching, and several other aspects.

Question arises, "How does the Next.js 15 release address the issue of unintentional exposure of server-side functions?"

The Next.js 15 release introduces two enhancements to address the unintentional exposure of server-side functions, specifically Server Actions:

  • Dead Code Elimination: Server Actions that are not used in the application are automatically removed during the next build process. This prevents them from having their IDs exposed to the client-side JavaScript bundle and creating a public endpoint.
  • Secure Action IDs: Next.js 15 generates unguessable, non-deterministic IDs for Server Actions, making it difficult for attackers to guess and access them directly. These IDs are periodically recalculated between builds to further enhance security.

It is important to note that these measures do not completely eliminate the risk of Server Action exposure. Developers should still treat Server Actions as public HTTP endpoints and implement appropriate security measures to protect sensitive data and functionality.

The above is the detailed content of NextJs Stable Version Is Here : What&#s New?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Python vs. JavaScript: A Comparative Analysis for DevelopersPython vs. JavaScript: A Comparative Analysis for DevelopersMay 09, 2025 am 12:22 AM

The main difference between Python and JavaScript is the type system and application scenarios. 1. Python uses dynamic types, suitable for scientific computing and data analysis. 2. JavaScript adopts weak types and is widely used in front-end and full-stack development. The two have their own advantages in asynchronous programming and performance optimization, and should be decided according to project requirements when choosing.

Python vs. JavaScript: Choosing the Right Tool for the JobPython vs. JavaScript: Choosing the Right Tool for the JobMay 08, 2025 am 12:10 AM

Whether to choose Python or JavaScript depends on the project type: 1) Choose Python for data science and automation tasks; 2) Choose JavaScript for front-end and full-stack development. Python is favored for its powerful library in data processing and automation, while JavaScript is indispensable for its advantages in web interaction and full-stack development.

Python and JavaScript: Understanding the Strengths of EachPython and JavaScript: Understanding the Strengths of EachMay 06, 2025 am 12:15 AM

Python and JavaScript each have their own advantages, and the choice depends on project needs and personal preferences. 1. Python is easy to learn, with concise syntax, suitable for data science and back-end development, but has a slow execution speed. 2. JavaScript is everywhere in front-end development and has strong asynchronous programming capabilities. Node.js makes it suitable for full-stack development, but the syntax may be complex and error-prone.

JavaScript's Core: Is It Built on C or C  ?JavaScript's Core: Is It Built on C or C ?May 05, 2025 am 12:07 AM

JavaScriptisnotbuiltonCorC ;it'saninterpretedlanguagethatrunsonenginesoftenwritteninC .1)JavaScriptwasdesignedasalightweight,interpretedlanguageforwebbrowsers.2)EnginesevolvedfromsimpleinterpreterstoJITcompilers,typicallyinC ,improvingperformance.

JavaScript Applications: From Front-End to Back-EndJavaScript Applications: From Front-End to Back-EndMay 04, 2025 am 12:12 AM

JavaScript can be used for front-end and back-end development. The front-end enhances the user experience through DOM operations, and the back-end handles server tasks through Node.js. 1. Front-end example: Change the content of the web page text. 2. Backend example: Create a Node.js server.

Python vs. JavaScript: Which Language Should You Learn?Python vs. JavaScript: Which Language Should You Learn?May 03, 2025 am 12:10 AM

Choosing Python or JavaScript should be based on career development, learning curve and ecosystem: 1) Career development: Python is suitable for data science and back-end development, while JavaScript is suitable for front-end and full-stack development. 2) Learning curve: Python syntax is concise and suitable for beginners; JavaScript syntax is flexible. 3) Ecosystem: Python has rich scientific computing libraries, and JavaScript has a powerful front-end framework.

JavaScript Frameworks: Powering Modern Web DevelopmentJavaScript Frameworks: Powering Modern Web DevelopmentMay 02, 2025 am 12:04 AM

The power of the JavaScript framework lies in simplifying development, improving user experience and application performance. When choosing a framework, consider: 1. Project size and complexity, 2. Team experience, 3. Ecosystem and community support.

The Relationship Between JavaScript, C  , and BrowsersThe Relationship Between JavaScript, C , and BrowsersMay 01, 2025 am 12:06 AM

Introduction I know you may find it strange, what exactly does JavaScript, C and browser have to do? They seem to be unrelated, but in fact, they play a very important role in modern web development. Today we will discuss the close connection between these three. Through this article, you will learn how JavaScript runs in the browser, the role of C in the browser engine, and how they work together to drive rendering and interaction of web pages. We all know the relationship between JavaScript and browser. JavaScript is the core language of front-end development. It runs directly in the browser, making web pages vivid and interesting. Have you ever wondered why JavaScr

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.