Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

react-native-turbo-haptics

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-native-turbo-haptics

Fast, worklet-compatible haptic feedback for React Native

latest
Source
npmnpm
Version
1.0.9
Version published
Maintainers
1
Created
Source

🌀 Turbo Haptics

Fast, worklet-compatible haptic feedback for React Native.

Features

  • 🏎️ Zero-delay haptic feedback, powered by JSI
  • 🪄 Compatible with Reanimated and Gesture Handler worklets
  • 🎯 9 different haptic patterns (impact, notification, selection)
  • 📱 iOS and Android support
  • 🪶 Lightweight, zero dependencies

Installation

yarn add react-native-turbo-haptics
cd ios && pod install

Usage

import { triggerHaptics } from 'react-native-turbo-haptics';

// In any JavaScript context:
triggerHaptics('selection');

// In worklets:
Gesture.Tap()
  .onBegin(() => triggerHaptics('soft'));
// Available haptic types:
const HapticTypes = {
  impactHeavy: 'impactHeavy',
  impactLight: 'impactLight',
  impactMedium: 'impactMedium',
  notificationError: 'notificationError',
  notificationSuccess: 'notificationSuccess',
  notificationWarning: 'notificationWarning',
  rigid: 'rigid',
  selection: 'selection',
  soft: 'soft',
};

License

MIT

Keywords

react-native

FAQs

Package last updated on 18 Aug 2025

Did you know?

Socket

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.

Install

Related posts