
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
react-native-nuance
Advanced tools
A React-native module for interfacing with the Nuance Voice-recognition system for iOS
Nuance Communications SDK module for React Native. It lets developers embed voice recognition into React Native apps for iOS (since the Android platform has native services).
Make sure you have "React Native" project created with react-native init
cd into a project directory where package.json file is located.
Run npm install react-native-nuance@latest --save
Start XCode and open project with it.
Go get yourself a free Nuance Developer account over at https://developer.nuance.com/public/index.php?task=home
Download the Nuance SDK
Download the SpeechKit.framework.
Drag the SpeechKit.framework to the Frameworks group of your Xcode project.
Set the following value under your Xcode project (unless you are using C++ in your application already). Build Settings tab => Linking => Other Linker Flags => -l"c++"
In XCode, in the project navigator, right click Libraries ➜ Add Files to [your project's name]
Go to node_modules ➜ react-native-nuance/ios and add Nuance.xcodeproj
Run your project (Cmd+R)
Not supported. Go visit the kind folks over at (react-native-android-voice)[https://www.npmjs.com/package/react-native-android-voice]
import the react-native-nuance module:
import NuanceManager from "react-native-nuance";
Add event listeners using DeviceEventEmitter:
DeviceEventEmitter.addListener(
'ConnectionSuccessful',
() => {
console.log('Connection successful');
}
);
Connect the SDK to the cloud:
NuanceManager.connect();
FAQs
A React-native module for interfacing with the Nuance Voice-recognition system for iOS
The npm package react-native-nuance receives a total of 1 weekly downloads. As such, react-native-nuance popularity was classified as not popular.
We found that react-native-nuance demonstrated a not healthy version release cadence and project activity because the last version was released 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
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.