Next.js has been updated with faster server startups, lower memory use and optimized packet imports.
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.
[画像:nextjs]
The first change to the new release is better performance and reliability for App Router applications. Comparing version 13.4 to 13.5, the developers report 22% faster local server startup, along with 29% faster hot module replacement (HMR) for fast refresh, and 40% less memory usage for new applications. They attribute the performance increase to optimizations including doing less work by caching or minimizing slow operations, optimizing expensive file system operations, better incremental tree traversal during compilation, and moving unnecessary blocking synchronous calls to be lazy. The changes mean some users have reported that compilation is up to 90% faster.
The other change of note to this version is optimized package imports. The team says this improves both local dev performance and production cold starts when using large icon or component libraries or other dependencies that re-export hundreds or thousands of modules.
Support for modularizing imports had already been added, which meant developers could configure how imports should resolve when using such libraries. This solution has been superceded with the new optimizePackageImports, which doesn't require you to specify the mapping of imports, but instead will automatically optimize imports for you, and will only load the modules you are actually using, while still giving you the convenience of writing import statements with many named exports.
The main other reported change is a new experimental function for next/image, which extends the HTML <img> element with features for automatic image optimization.
The new unstable_getImgProps() function is intended for use where you don't want to use the <Image> component directly, such as when working with background images,image-set, canvas context.drawImage(), or Light/Dark Mode images.
Next.js 13.5 is available now.
[画像:nextjs]
More Information
Related Articles
Next.js Improves Data Fetching
Next.js 5 Improves Webpack Support
TypeScript 2.7 Improves Type Inference
React 15.5 Gets Ready For Rewrite
To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.
AI Champion Ship Now Open
07/11/2025
The AI Champion Ship is now underway, with a month to go before entries close. The organizers describe it as a global competition for builders, dreamers, and tinkerers who want to push AI beyond the o [ ... ]
InfluxDB 3.6 Released With AI Capabilities
17/11/2025
InfluxData has released InfluxDB 3.6 for both Core and Enterprise, a new version which incorporates AI and performance improvements. But, first of all what's the difference between Core and Ente [ ... ]
- GitHub Copilot CLI And Spaces In Preview
- Formae Launched As Terraform Alternative
- Robot Army Video As Robots Shipped En Masse
- XAML.io 0.5 Adds Multi-File Project Editing
- Vibe Coding Is Collins Word of the Year 2025
- Scouting America Launches AI And Cybersecurity Badges
- Edera Open Sources Sprout
- Julia 1.12 Adds Trim Feature
- Codacy Provides Free AI- Risk Assessment
- Google AI Studio Does Angular
- Jules Coding Agent Upgraded
- Visual Studio Adds Planning Mode To Copilot
- Exploring The Microsoft Agent Framework
Comments
or email your comment to: comments@i-programmer.info