From the course: React: Server-Side Rendering

Unlock the full course today

Join today to access over 22,500 courses taught by industry experts or purchase this course individually.

Other tools available for code splitting

Other tools available for code splitting - React.js Tutorial

From the course: React: Server-Side Rendering

Start my 1-month free trial

Other tools available for code splitting

- [Instructor] Code splitting is built in as part of Next.js, and if you're curious about the advanced features related to code splitting, such as Dynamic imports, feel free to explore this page. For example, Dynamic imports is a great way to lazy load your application, which basically means it loads the components as the user scrolls through the page. You have other tools that can improve performance, like AMP Support and Static HTML Support. I would strongly suggest you browse through these subjects to see what fits your needs. And if you build an application that doesn't use Next.js and still would like to leverage code splitting and other tools like Next.js, take a look at Webpack, which is the tool used behind the scene by Next.js. So you can pretty much leverage Webpack to do bundling and adding functions to performance purposes without doing SSR. And finally, if you're not a fan of Webpack, the alternative is…

Contents