
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
ultravox-react-native
Advanced tools
React Native client SDK for Ultravox.
npm install ultravox-react-native
import { useUltravox } from 'ultravox-react-native';
// ...
const { joinCall, leaveCall } = useUltravox();
useEffect(() => {
joinCall(joinUrl).catch((error) => {
console.error('Failed to join call:', error);
});
return () => {
leaveCall().catch((error) => {
console.error('Failed to leave call:', error);
});
};
}, [joinUrl, joinCall, leaveCall]);
See the included example app for a more complete example. To get a joinUrl, you'll want to integrate your server with the Ultravox REST API
This repo includes a basic example application that can be used with the SDK. To run it from the main directory:
npm install --force
cd example
npm run android
npm run start -- --tunnel
An Expo server will start, from which you can open an Android build on your connected device.
package.json.npm publish --dry-run --git-checks=falsemain.npm publishFAQs
React Native client SDK for Ultravox
We found that ultravox-react-native demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.