
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
react-native-headphone-detection
Advanced tools
React Native headphone detection, both audio jack and bluetooth devices!
$ yarn add react-native-headphone-detection
For react-native
0.60+:
$ cd ios && pod install && cd ..
For previous versions:
$ react-native link react-native-headphone-detection
Add permissions for android:
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>
<uses-permission android:name="android.permission.BLUETOOTH" />
import HeadphoneDetection from 'react-native-headphone-detection';
// Function
HeadphoneDetection.isAudioDeviceConnected().then(console.log);
/*
Output:
{
audioJack: boolean,
bluetooth: boolean,
}
*/
// You can also use it as an event listener
HeadphoneDetection.addListener(console.log);
// Don't forget to remove the listener!
if (HeadphoneDetection.remove) { // The remove is not necessary on Android
HeadphoneDetection.remove();
}
FAQs
React Native headphone detection, both audio jack and bluetooth devices!
We found that react-native-headphone-detection 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 uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.