Is React 18 overhyped?
4 min readNov 26, 2021
As a front-end developer, you must have come across articles titled as follows :
- What’s new in React 18?
- Should you learn React 18?
- React18: Features and updates
- The Complete Guide to React 18
- React 18 will change front-end development.
- Okay, 5th one was made-up…!!
All I’m trying to say, blog authors have done their best to draw awareness towards the upcoming release of React 18. My question is, “Does it worth it?”
To answer that, we will see “What’s new in React 18?” according to the official plan.
- Automatic batching for fewer renders
- New API: startTransition
- New Suspense SSR Architecture
1. Automatic batching
Till React 17, the only event listeners have the feature of arranging multiple setState.
A piece of code is worth a thousand words.
From React 18 it will support inside of timeouts, promises, native event handlers or any other event will batch the same way as updates inside of React events.