
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-vibration
Advanced tools
Vibration module wrapping VibrationIOS and adding support for android
Vibration module with support for android, based on the pull request https://github.com/facebook/react-native/pull/2794 from @christopherdro. For iOS it wraps VibrationIOS. On iOS the duration can't be specified. If you don't specify a duration on Android 300ms will be used.
npm i --save react-native-vibration
android/setting.gradle...
include ':ReactNativeVibration', ':app'
project(':ReactNativeVibration').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-vibration/android')
android/app/build.gradle...
dependencies {
...
compile project(':ReactNativeVibration')
}
import com.eguma.vibration.Vibration; // <--- import
public class MainActivity extends Activity implements DefaultHardwareBackBtnHandler {
......
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mReactRootView = new ReactRootView(this);
mReactInstanceManager = ReactInstanceManager.builder()
.setApplication(getApplication())
.setBundleAssetName("index.android.bundle")
.setJSMainModuleName("index.android")
.addPackage(new MainReactPackage())
.addPackage(new Vibration()) // <------ add here
.setUseDeveloperSupport(BuildConfig.DEBUG)
.setInitialLifecycleState(LifecycleState.RESUMED)
.build();
mReactRootView.startReactApplication(mReactInstanceManager, "example", null);
setContentView(mReactRootView);
}
......
}
'use strict';
var React = require('react-native');
var Vibration = require('react-native-vibration');
var {
AppRegistry,
StyleSheet,
Text,
TouchableHighlight,
View,
} = React;
var VibrationExample = React.createClass({
onPress() {
Vibration.vibrate(500);
},
render() {
return (
<View style={styles.container}>
<TouchableHighlight
onPress={this.onPress}
style={styles.button}
>
<Text>
Click me to vibrate!
</Text>
</TouchableHighlight>
</View>
);
}
});
var styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF',
},
button: {
padding: 20,
justifyContent: 'center',
alignItems: 'center',
borderColor: 'black',
borderRadius: 5,
borderWidth: 1,
}
});
AppRegistry.registerComponent('VibrationExample', () => VibrationExample);
FAQs
Vibration module wrapping VibrationIOS and adding support for android
The npm package react-native-vibration receives a total of 60 weekly downloads. As such, react-native-vibration popularity was classified as not popular.
We found that react-native-vibration 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.