fre
fre copied to clipboard
:ghost: Tiny Concurrent UI library with Fiber.
Can React 18 concurrency features be added to Fre? Or realized in a different way? In other words, 1) does Fre support expensive state computation while remaining snappy? 2) Is...
I just wanted to put this as a place holder item for now - https://github.com/reactwg/react-18/discussions/86 Some libraries that are using `useSyncExternalStore` already: - `react-query`: https://github.com/tannerlinsley/react-query/pull/3064/files
_In this case:_ const [list, setList] = useState([1,2,3]) \{list.map((d) => \{d}\)} \ setList(list.concat(4))}>+\\ _when click button, expected rendering results should be:_ \\1\\2\\3\\4\ **\+\**\ _but actully:_ \\1\\2\\3\**\+\**\4\\
Hi, when I call render multiple times the component is attached in the dom multiple times. I have a requirement to re-render multiple times for creating custom elements. ```js import...
如题,中英文都可以
Very interesting take on JSX! Would be helpful to compare performance: https://github.com/krausest/js-framework-benchmark I'm guessing a bit better than Inferno? [relevant discussion](https://github.com/krausest/js-framework-benchmark/issues/650)
Implement hydrate in linked list. 1. Use `document.createTreeWalker` for creating an iterator. 2. Iterator and linked list keep the same traversal mode. 3. Reuse DOM as much as possible.
请问支持ssr吗
如题
## SSR 使用指南 ### 1. 切换到demo目录 ```shell script cd ./demo ``` ### 2. esbuild 编译ssr服务端脚本 ```shell script npm run ssr-build ``` ### 3. 开启ssr服务 ```shell script npm run ssr-serve ```...
i've seen a few mention on it in the different Pr/issues but can't find anything about it in the current `fre` package. Is it still something that is planned? A...