
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
react-native-wave
Advanced tools
React Native animation library.
npm i react-native-wave --save
Example usage of the library:
import React, {Component} from 'react'
import {
StyleSheet,
View,
Easing
} from 'react-native'
import Card from './app/components/Card'
import {Wave, Animate, Composing, AnimationType} from '../lib'
const AnimatedCard = Wave(Card)
.applyAnimation(Animate.opacity, 0, 1, 1000, AnimationType.timing, Easing.circle())
.applyAnimation(Animate.marginBottom, 0, 60, 2000)
.applyAnimation(Animate.padding, 0, 40, 2000)
.applyAnimationType(AnimationType.spring)
.applyEasing(Easing.bounce())
.applyDecayVelocity(0.07)
.applyComposition(Composing.parallel)
.animate()
export default class App extends Component {
render() {
return (
<View style={styles.container}>
{AnimatedCard}
</View>
)
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
backgroundColor: '#F5FCFF'
}
})

FAQs
React Native animation library
We found that react-native-wave 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.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.