
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
react-waveview
Advanced tools
Wave view component in React

npm i react-waveview --save
import Wave from 'react-waveview';
const waveItems: WaveItem[] = [
{ A: 10, T: 180, fill: '#62c2ff' },
{ A: 15, T: 140, fill: '#0087dc' },
{ A: 20, T: 100, fill: '#1aa7ff' }
];
const MyComponent = () => (
<Wave H={30} waveParams={waveItems} animated={true}></Wave>
);
/**
---------+------------------------+
<-- P -->|<-- T -->| |______
| /\ | /\ | ^
| / \ | / \ | A
| / \ | / \ | |
|/ \ |/ \|__V___
| \ / | ^
| \ / | |
| \ / | |
| \/ | H
| | |
| fill | |
---------+------------------------+__V___
*/
| name | type | description | default | required |
|---|---|---|---|---|
| H | number | Baseline height | - | true |
| waveParams | WaveItem[] | List of waves | - | true |
| animated | boolean | If true, animation when mounted | false | false |
| easing | TimingFunction | Specifies the speed curve of an animation | TimingFunction.LINEAR | false |
| speed | number | Base duration in ms of one wave cycle | 5000 | false |
| speedIncreasePerWave | number | Increase in speed in ms per each wave | 1000 | false |
| className | string | className for wave container | - | false |
| style | CSSProperties | style for wave container | - | false |
| name | type | description |
|---|---|---|
| A | number | distance protruding from baseline |
| T | number | distance of a wavelength |
| fill | any | background color of wave |
An enum containing all of speed curve of an animation
{
EASE = 'ease',
EASE_IN = 'ease-in',
EASE_OUT = 'ease-out',
EASE_IN_OUT = 'ease-in-out',
LINEAR = 'linear',
STEP_START = 'step-start',
STEP_END = 'step-end',
}
FAQs
WaveView for React
The npm package react-waveview receives a total of 4 weekly downloads. As such, react-waveview popularity was classified as not popular.
We found that react-waveview 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

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.