React Distros

and The Deployment Age of JavaScript Frameworks

James K Nelson raised an interesting point recently:

So Mr. Abramov has been telling us #reactjs is a UI runtime.

To me, that sounds like React is a kernel. Webpack/Create React App are bootloaders. Next.js and Gatsby are the closest things we’ve got to distros.

I think we need more distros.

In case you, like me, weren’t sure what bootloaders are, Google says a ”Bootloader is a piece of code that runs before any operating system is running. Bootloader are used to boot other operating systems, usually each operating system has a set of bootloaders specific for it”. I guess Webpack’s runtime is that, but it is also a compiling mechanism from, well, /src to /dist.

Anyway, the analogy rings true. I’d like to expand on it a little.

Table of Contents

The Carlota Perez Framework

The VC world is particularly enamored with The Carlota Perez Framework right now. Both Fred Wilson and Marc Andreesen love it, and Ben Thompson, Benedict Evans and Tuur Demeester have extended it to BigTech, Smartphones, and Cryptocurrency recently.

People love dissing techbros as reinventing things every 10 years in an endless and meaningless cycle. But in reality the real Megatrends often take on a different shape.

https://i0.wp.com/reactionwheel.net/wp-content/uploads/2015/09/The-Deployment-Age.004.png?w=1280

The X axis takes place on the order of 20-50 years, and the Y axis is % of population penetration. This has played out repeatedly in the past century and adoption is accelerating as we get better at distribution:

https://steemitimages.com/1280x0/https://steemitimages.com/DQmVcSfmG5y1J3n3qKCkm53AbMkQiSGrU4XV8QaRbg3i3D4/blackrock-tech-adoption.jpg

The basic idea is that there is an initial innovation, then a “frenzy” of competing technologies with massive growth, then a turning point comes where the technology reaches synergy and maturity (often compared to the “late majority” and “laggards” group from Everett Rogers).

The concerns of the Installation Age are growth and innovation, often resulting in creative destruction (read: massive churn). The concerns of the Deployment Age are stability and addressing the needs of later, often larger, market segments. In the former, hobbyists and speculators rule, and things are often simpler. In the latter, the suits take over, and a lot of time is spent over the nitty gritty details.

The Deployment Age of JavaScript Frameworks

I think the turning point for JS Frameworks began a year or two ago. We no longer have a new frontend framework every month. React has been on top of Hacker News Job Board for 31 months. But it isn’t just React - Vue and Angular both have found very stable adoption among sizable companies who are not going to migrate anytime soon.

https://pbs.twimg.com/media/ERNOUTnXUAAZlAN?format=jpg&name=medium

The Deployment Age has led to the rise of metaframeworks - frameworks built around frameworks to literally address deployment concerns the original frameworks were not designed for. React has Next.js and Gatsby, Vue has Nuxt.js and Gridsome, Svelte has Sapper, and Angular even got Scully recently. In most cases, the frameworks were designed for taking control of a single DOM element and managing a tree of dynamic elements in it, and their metaframework extends that to cover the entire site/app, including routing and static/server side rendering.

I always liken metaframeworks to the Hulkbuster armor wrapping around the Iron Man suit, because they are heavier but more powerful, but also because I’m a massive Marvel nerd.

https://media2.giphy.com/media/jrTVYXOVxUASI/giphy.gif

React Distros

So let’s talk about React Distros.

Clearly the analogy is an apt one. If React is Linux, Vue is MacOS and Angular is Windows. Except here Linux has the most numbers. There are dozens of Linux distros built for varying kinds of users, all sharing the same underlying tech. To the extent that React performs many of the functions of an operating system atop the browser, this is almost a literally true analogy. This is why I observed last year:

React’s refusal to have an opinion on things like styling and routing are the biggest source of frustration for users and also its biggest reason for success.

There isnt 1 framework called React, there are 1000s of artisanally handrolled fw’s. React gets credit for ALL of them.

This is at once React’s best and worst feature - it’s small surface area and unopinionatedness about many essential things means you not only get to pick and choose what you pair with it, you kind of have to.

I disagree with James that CRA is a bootloader - I think it is also a React distro, a decent one for Single Page Apps, but not even close to a perfect one.

Here is an incomplete list of React Distros:

  • React Native - a distro that builds to iOS and Android apps. One of few React distros to actually include good default components (because the target ecosystems do)
  • React Boilerplate - probably the earliest React distro, just a boilerplate to be cloned
  • Electron React Boilerplate - for desktop apps
  • React 360 - React for VR? sure.
  • React Ink - React for CLI’s? why not.
  • Next.js - Hybrid Server, Serverless, and Static Rendering. Plugin story surprisingly nascent. Pages pull data.
  • Gatsby.js - Static Rendering with GraphQL data layer. Plugins galore. You can push and pull data to/from pages.
  • React Static - Static Rendering with a simpler data layer. You push data to pages.
  • Create React App - Single Page App starter with no data layer.
  • Ionic React - 100+ great React components, with cross platform targets and React Router built in under the hood
  • Docusaurus - Static Rendering with documentation focus. Locked down workflow from markdown to preset templates.
  • Storybook - Component Library playground that can do documentation and display non React components.
  • Meteor.js - A full stack framework that later adopted React.
  • Redwood - Tom Preston-Werner’s upcoming full stack framework that includes a backend GraphQL layer
  • Blitz.js - Brandon Bayer’s new Rails + React metaframework

There are even metaframeworks atop metaframeworks:

  • Navi and CURA - James’ projects that add some level of routing and SSR on top of CRA
  • Docz - Static Rendering of Docs with default TypeScript and MDX setups on top of Gatsby
  • Expo - an excellent React Native distro focused on developer experience
  • React Native Web - a RN distro for the web. See my post on the RN singularity
  • React XP - Microsoft’s RN distro that includes building to Windows native apps

And Parcel and likely Rome follow the Collapsing Layers thesis and collapse the metaframework into the build tool (instead of having the metaframework circumscribe the build tool). React Native of course has Metro, a dedicated bundler, and Hermes a dedicated JS engine.

What other React Distros should exist?

However I agree with James that there should be more React Distros, especially as we start addressing clearly defined usecases within the community. He writes:

But anyway, here’s my ideal React distro:

  • Out-of-the-box SSR
  • CSS-in-JS is easy - if you want it
  • Sane defaults for routing and data fetching/caching, and…
  • Works without GraphQL
  • Builds like CRA, but…
  • Allows Webpack configuration
  • And 🙅‍♂️ to fs-based routing

I agree with most of these except I like fs-based routing 😂

I think there are a bunch of toggles that you can play with to think about your needs and roll your own React distro or use one off the shelf. We covered some of this in the State of /r/Reactjs Survey

  • Build Target
  • State Management
  • Data Layer
  • Styling
  • TypeScript support
  • Testing

Notice that Routing is missing because of the de facto dominance of React Router, but of course Gatsby, Next.js, React-Static, and Navi include their own router due to the need to integrate the data layer. React Native used to have more contention in routing, but React Navigation seems to be de facto now.

I happen to think STAR apps are a good set of opinions for well-maintained apps. I also particularly like the pairing of Tailwind with the React model of classNames, which is why I have made Rincewind as a basic proof of concept.

I also think we have a ways to go when it comes to authoring format. JSX files is almost certainly not the end state of things. I made an initial attempt at a React SFC proposal inspired by Vue, but I think Storybook actually got it right with the Component Story Format, and I think a React SFC will look closer to a standardized ESM file format than a custom template (The Formats over Functions thesis). Of course, MDX also exists as a content format with React shortcodes, but I think it has potential as a full fledged Single File Component format - MDSvex from the Svelte ecosystem is evolving towards this.

A React authoring format will need a dedicated compiler, which at the macro level gets especially interesting when you design it to address a styling solution and Suspense-enabled render-as-you-fetch solution like Facebook does. But even at the micro level, we often talk about a sufficiently advanced compiler for all the boilerplate optimizations that React’s low level hooks make us do. I do think we can design more syntax to make this all more ergonomic. And of course, if we are going to make a compiler, we might as well make an optimizing compiler! Make use of Preact if we don’t really rely on React’s nuanced behavior and event system? (I bet this sounds way easier than it really is.)

As Tom Dale observed in 2017, Compilers are the new Frameworks. But will React go the way of Svelte, Vue, and Angular and break up its own runtime? No. It has other concerns.

React Distros for Toolmakers

Why should only app makers get React Distros?

I first made friends with Travis Fischer through discovering create-react-library. I also help maintain TSDX, a toolchain for building React + TypeScript libraries like Formik. As we start being able to bet on a stable foundation in the Deployment Phase, we can start making tools to help us make tools.

https://pbs.twimg.com/media/ERNJ-dlXYAAfv81?format=jpg&name=medium

Tagged in: #react #ideas #tech #strategy

Leave a reaction if you liked this post! 🧡
Loading comments...
Webmentions
Loading...

Subscribe to the newsletter

Join >10,000 subscribers getting occasional updates on new posts and projects!

I also write an AI newsletter and a DevRel/DevTools newsletter.

Latest Posts

Search and see all content