Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
expo-haptics
Advanced tools
Provides access to the system's haptics engine on iOS and vibration effects on Android.
The expo-haptics package provides a way to trigger haptic feedback on iOS and Android devices. This can be used to enhance user experience by providing tactile feedback in response to user interactions.
Impact Feedback
This feature allows you to trigger an impact feedback, which is a physical tap or bump. The `impactAsync` function can take different styles such as Light, Medium, and Heavy.
import * as Haptics from 'expo-haptics';
Haptics.impactAsync(Haptics.ImpactFeedbackStyle.Medium);
Notification Feedback
This feature allows you to trigger notification feedback, which is a series of taps that indicate a notification. The `notificationAsync` function can take different types such as Success, Warning, and Error.
import * as Haptics from 'expo-haptics';
Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success);
Selection Feedback
This feature allows you to trigger selection feedback, which is a light tap used to indicate a selection change. The `selectionAsync` function does not take any parameters.
import * as Haptics from 'expo-haptics';
Haptics.selectionAsync();
The react-native-haptic-feedback package provides similar functionalities for triggering haptic feedback on iOS and Android devices. It offers more customization options for feedback patterns and intensities compared to expo-haptics.
The react-native-vibration package allows you to trigger vibration patterns on Android and iOS devices. While it does not offer the same level of haptic feedback customization as expo-haptics, it is useful for simpler vibration needs.
Provides access to the system's haptics engine on iOS and vibration effects on Android.
For managed Expo projects, please follow the installation instructions in the API documentation for the latest stable release.
For bare React Native projects, you must ensure that you have installed and configured the expo
package before continuing.
npx expo install expo-haptics
No additional set up necessary.
Run npx pod-install
after installing the npm package.
This module requires permission to control vibration on the device, it's added automatically.
<!-- Added permissions -->
<uses-permission android:name="android.permission.VIBRATE" />
Contributions are very welcome! Please refer to guidelines described in the contributing guide.
FAQs
Provides access to the system's haptics engine on iOS and vibration effects on Android.
We found that expo-haptics 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.