node-mac-haptics
v1.0.0
Published
A native NodeJS module to interact with macOS haptic feedback.
Downloads
1
Maintainers
Readme
Node macOS Haptics
A native NodeJS module to interact with macOS haptic feedback.
Installation
npm install node-mac-haptics --save
Usage
import haptics from 'node-mac-haptics';
haptics.performFeedback();
API
haptics.performFeedback(pattern = 'NSHapticFeedbackPatternGeneric', performanceTime = 'NSHapticFeedbackPerformanceTimeNow')
pattern
String - pattern of feedback to be provided to the user. Can be one ofNSHapticFeedbackPatternLevelChange
,NSHapticFeedbackPatternAlignment
, orNSHapticFeedbackPatternGeneric
.performanceTime
String - the time when the feedback should be provided to the user. Can be one ofNSHapticFeedbackPerformanceTimeDefault
,NSHapticFeedbackPerformanceTimeDrawCompleted
, orNSHapticFeedbackPerformanceTimeNow
.
Returns Void
.
Initiates a specific pattern of haptic feedback to the user.
Notes:
- Works from macOS 10.11.