The Airbnb Tech Blog

Creative engineers and data scientists building a world where you can belong anywhere. http://airbnb.io

How Airbnb Smoothly Upgrades React

Andre Wiggins
The Airbnb Tech Blog
9 min readJul 23, 2024

--

Introduction

Challenges of upgrading

Ideal vs Reality graphs of our major and minor versions of React over time.

Designing the React Upgrade System

Simplified diagram of our ideal upgrade system
import React18 from 'react'; 
import React16 from 'react'; // duplicated import?

if (shouldEnableReact18()) {
const root = React18.createRoot(container);
root.render(<App />);
} else {
React16.render(<App />, container);
}

Module aliasing

"react-18": "npm:react@18"

TypeScript discrepancies

Environment targeting

Module aliasing and environment targeting in use together to deploy different versions of the framework together in production

Testing the upgrade

Progressive rollout

Feature adoption and future work

Conclusion

Acknowledgments

--

--

The Airbnb Tech Blog
The Airbnb Tech Blog

Published in The Airbnb Tech Blog

Creative engineers and data scientists building a world where you can belong anywhere. http://airbnb.io

Responses (9)