
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
react-client-async
Advanced tools
Previously, async component were only supported on the server (Next.js). With this package, you can now easily use it on the client side as well.
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 ComponentA component can be used with memo and async together!
const Rec: AsyncFC<{ n: number; }> = memo(
async ({ [$signal]: signal, n }) =>
n <= 0 ? (
<> {/* break the recursion */}
<div>0</div>
</>
) : (
<> {/* delay and recursion */}
{await delayWithSignal(99, signal)}
{n}<Async $fc={Rec} n={n - 1} />{n}
</>
),
);
useAsyncIterable hookIterable async 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 bunbun installbun devbun run build:appbun run build:libbun run deploybun publishFAQs
React tools for async rendering in client side! 🚀
The npm package react-client-async receives a total of 3 weekly downloads. As such, react-client-async popularity was classified as not popular.
We found that react-client-async demonstrated a not healthy version release cadence and project activity because the last version was released 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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.