Skip to content

Instantly share code, notes, and snippets.

@poteto
Last active January 21, 2026 00:46
Show Gist options
  • Select an option

  • Save poteto/37c076bf112a07ba39d0e5f0645fec43 to your computer and use it in GitHub Desktop.

Select an option

Save poteto/37c076bf112a07ba39d0e5f0645fec43 to your computer and use it in GitHub Desktop.
[DEPRECATED] React Compiler compatibility module for codebases unable to use React 19
module.exports = function(api) {
return {
plugins: [
[
'babel-plugin-react-compiler', {
runtimeModule: 'react-compiler-runtime'
}
]
]
}
}
{
"dependencies": {
"react-compiler-runtime": "file:./lib/react-compiler-runtime"
},
"devDependencies": {
"babel-plugin-react-compiler": "latest"
}
}
// lib/react-compiler-runtime/index.js
import React from 'react';
const $empty = Symbol.for("react.memo_cache_sentinel");
/**
* DANGER: this hook is NEVER meant to be called directly!
*
* Note that this is a temporary userspace implementation of this function
* from React 19. It is not as efficient and may invalidate more frequently
* than the official API. Please upgrade to React 19 as soon as you can.
**/
export function c(size) {
return React.useState(() => {
const $ = new Array(size);
for (let ii = 0; ii < size; ii++) {
$[ii] = $empty;
}
// @ts-ignore
$[$empty] = true;
return $;
})[0];
}
// lib/react-compiler-runtime/package.json
{
"name": "react-compiler-runtime",
"version": "0.0.1",
"license": "MIT",
"main": "index.js",
"dependencies": {
"react": "^18.2.0"
}
}
@ashubham
Copy link

nit:

12 export function c(size: number) {

has a : number type annotation, which is not javascript

@poteto
Copy link
Author

poteto commented Jul 23, 2024

updated gist to esm and removed type annotations

@poteto
Copy link
Author

poteto commented Oct 7, 2024

Please note that you no longer need this gist, you can follow the docs on how to get the compiler to work with React <19.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment