Vanta Logo
SPONSOR
Automate SOC 2 & ISO 27001 compliance with Vanta. Get $1,000 off.
Published
4 min read
Archived

Trevor I. Lasn

Staff Software Engineer, Engineering Manager

Next.js — React Server-Side Rendering Done Right

We’re officially in the age of server-side rendered react apps

Next.js is a minimalistic framework for building React applications that are server-rendered. It was open-sourced on October 25, 2016, by a company called ZEIT, now known as Vercel.

Since then, Next.js has gained a strong reputation and is backed by a stable, active organization in the open-source world. This means that Next.js is here to stay.

Why Should You Care?

You might wonder, “Why should I care about Next.js? I already know how to build React apps.” That’s a valid question. But as developers, we should always be open to new tools and concepts. Learning new things is part of the job, and Next.js can make your life easier as a developer.

Think about it this way: When jQuery came out, it revolutionized web development because it made JavaScript easier to use. If you had ignored it, you would have missed out on significant improvements.

Innovation tends to win in the long run, so why not explore something new?

How Next.js Can Improve Your Life

Next.js offers several advantages right out of the box:

  1. Ease of Use: No need to set up Webpack, React Router, React, and React-DOM separately. It’s all included.
  2. Code Splitting: Automatically splits your code for better performance.
  3. First-Page Load Performance: Improves loading times for the first page your users see.
  4. SEO: Better search engine optimization, which is crucial for many applications.
  5. JavaScript Everything: Next.js builds on the “JavaScript everywhere” philosophy, but with better simplicity and performance than some earlier attempts, like Meteor.

Client-Side vs. Server-Side Rendering

When you use React traditionally, your browser downloads a basic HTML page, and JavaScript fills in the content. This is called client-side rendering.

With server-side rendering (SSR), the initial content is generated on the server. Your browser downloads a fully populated HTML page, making the site load faster and improving SEO.

The Downsides of Server-Side Rendering

Server-side rendering isn’t a silver bullet. It has some downsides:

  1. Server Load: SSR puts more work on your server, which could slow down response times, especially under heavy load.
  2. Increased HTML Size: The size of your HTML files will be larger, which could slow down downloads, especially for apps with large components.
  3. Complexity: Using SSR can make your application more complex, leaving you with less time to focus on other features.

When to Use Server-Side Rendering

SSR is a good choice when:

  1. You Need SEO: Especially for search engines like Google, DuckDuckGo, Bing, Yahoo, or Baidu.
  2. You Need Performance: If you have a working React app and want the best possible performance, and you’re willing to pay for extra server resources.

When to Avoid Server-Side Rendering

SSR might not be the best option when:

  1. Your App Isn’t Finished: If you’re still building your app, focus on getting it working first.
  2. Limited Server Resources: If you have a tight budget or scaling is an issue, SSR might not be the right choice.

Alternatives to Server-Side Rendering

If SSR doesn’t seem like the right fit, you have other options:

  1. Client-Side Rendering: Stick with the traditional approach and rely on Googlebot’s ability to crawl JavaScript for SEO. Your SEO might suffer on other search engines like Baidu, Bing, and Yahoo.
  2. Pre-Rendering Services: Use services like prerender to cache a static version of your pages, improving both SEO and performance without the complexity of SSR.

Conclusion

Next.js makes server-side rendering accessible and straightforward. It’s a powerful tool for improving performance and SEO, all while keeping your development process smooth and efficient. Whether you’re building a new app or improving an existing one, Next.js is worth a look.

If you found this article helpful, you might enjoy my free newsletter. I share developer tips and insights to help you grow your skills and career.


More Articles You Might Enjoy

If you enjoyed this article, you might find these related pieces interesting as well. If you like what I have to say, please check out the sponsors who are supporting me. Much appreciated!

Leadership
5 min read

Company Culture Happens Outside Management

Why real company culture grows from the ground up, not top down.

Sep 14, 2024
Read article
Leadership
6 min read

Software Engineer Titles Have (Almost) Lost All Their Meaning

Examining the Devaluation of Software Engineer Titles and Its Impact on Tech Industry Integrity

Oct 20, 2024
Read article
Javascript
6 min read

setImmediate() vs setTimeout() in JavaScript

both setImmediate() and setTimeout() are used for scheduling tasks, but they work differently.

Sep 8, 2024
Read article
Webdev
3 min read

Improve PageSpeed Insights Score with Lazy Loading Iframes

How to save bandwidth and speed up your site by lazy-loading iframes

Sep 13, 2024
Read article
Tech
5 min read

VoidZero: Threat or Catalyst for Open Source JavaScript Tooling?

When Evan You announced VoidZero, I'll admit - I got excited. And a little nervous.

Oct 15, 2024
Read article
React
3 min read

How To Use Redux with React Hooks

Write less code, but better code

Jun 20, 2019
Read article
Large language models
3 min read

When Will We Have Our First AI CEO?

Welcome to the future of corporate leadership. It's efficient, profitable, and utterly inhuman

Nov 4, 2024
Read article
Javascript
4 min read

What is the JavaScript Pipeline Operator |>

A deep dive into how pipeline operators can make your code more readable and maintainable

Oct 29, 2024
Read article
Javascript
3 min read

navigator.clipboard - The New Asynchronous Clipboard API in JavaScript

Copy and paste text, images, and files using the new navigator.clipboard API

Dec 7, 2024
Read article

Become a better engineer

Here are engineering resources I've personally vetted and use. They focus on skills you'll actually need to build and scale real projects - the kind of experience that gets you hired or promoted.

Many companies have a fixed annual stipend per engineer (e.g. $2,000) for use towards learning resources. If your company offers this stipend, you can forward them your invoices directly for reimbursement. By using my affiliate links, you support my work and get a discount at the same!


This article was originally published on https://www.trevorlasn.com/blog/next-js-react-server-side-rendering-done-right. It was written by a human and polished using grammar tools for clarity.