![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
react-client-async
Advanced tools
This package helps you use async function without the need to migrate to ⚛️ React 19
and server-side rendering!
AbortSignal
and automatic abort on re-render.npm i react-client-async
useAsync
HookYou can use the useAsync
hook to create a task.
console.log(useAsync(fn, args, options));
Async
ComponentYou can use the Async
component to render an async component.
<Async
$fc={fc} // may be an async function component
$waiting={waiting} // waiting component
$fallback={fallback} // fallback component
{...props} // props for the function component
/>
Demo
of Recursive Async ComponentEasy to wrap
a recursive async component and memoize it.
const Rec = wrap<{ n: number }>(
async ({ [$signal]: signal, n }) =>
// break the recursion
(n <= 0) ? 0 : (
// delay and recursion
<>
{await delay(99, signal)}
{n} <Rec n={n - 1} /> {n}
</>
)
);
useAsyncIterable
hookAsyncIterable
componentasync function* IterableComponent() {
yield* OtherIterableComponent();
yield await component1();
yield await component2();
yield <div>...</div>;
}
Looking forward to your feedback or contribution! 🚀🚀🚀
bun
runtime: npm install -g bun
bun install
bun dev
bun build:app
bun build:lib
bun build:app:deploy
bun build:lib:publish
FAQs
React tools for async rendering in client side! 🚀
The npm package react-client-async receives a total of 0 weekly downloads. As such, react-client-async popularity was classified as not popular.
We found that react-client-async demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.