关于 React Fiber 的资源
This is a repository for resources about React Fiber.
React Fiber is a new React reconciliation algorithm, which started using from v16. React Fiber makes many features like Suspense and Concurrent Mode possible.
Concurrent Mode is still in experimental stage, but React already has the documentation so you can see what Concurrent Mode makes possible at the documentation.
https://reactjs.org/docs/concurrent-mode-intro.html
If you are not familiar with React internals, I recommend you reading the documentations first, which are very helpful resources.
[Note] React Fiber now behaves as synchronous by default. See #8127. This call stacks are results in the time when it behaved as asynchronous.
…
React doesn't depend on any specific environments like DOM and React provides us a way to create own custom renderers based on Fiber reconciliation. ReactDOM and ReactNative are implemented as one of the custom renderers.
I've presented about the custom renderer; here is the link to the slide.
The following is a custom renderer named react-fs, which is a renderer for fs package
const React = require('react');
const { ReactFS } = require('@koba04/react-fs');
const targetDir = "test-react-fs-project";
ReactFS.render(
<>
# Title
console.log("Hello");
,
targetDir
);
ReactNoop is a renderer for React Fiber, which is using for testing and debugging. It is very useful to understand React Fiber renderer!! :eyes:
暂无开放 Issues,或尚未同步最近议题。