
Security News
CVE Volume Surges Past 48,000 in 2025 as WordPress Plugin Ecosystem Drives Growth
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.
@kawarp/react
Advanced tools
React component for Kawarp fluid animated backgrounds.
npm install @kawarp/react
import { Kawarp } from '@kawarp/react';
function App() {
return (
<Kawarp
src="/album-art.jpg"
style={{ width: '100%', height: '100vh' }}
/>
);
}
For operations that can't be done via props (loading from files, blobs, or gradients), use the useKawarp hook:
import { Kawarp, useKawarp } from '@kawarp/react';
function App() {
const { ref, loadImage, loadBlob } = useKawarp();
const handleFileUpload = async (file) => {
await loadBlob(file);
};
return (
<>
<Kawarp ref={ref} src="/initial.jpg" style={{ width: '100%', height: '100vh' }} />
<input type="file" onChange={(e) => handleFileUpload(e.target.files[0])} />
</>
);
}
| Prop | Type | Default | Description |
|---|---|---|---|
src | string | - | Image URL (auto-loads on change) |
autoPlay | boolean | true | Auto-start animation |
onLoad | function | - | Callback when image loads |
onError | function | - | Callback on error |
className | string | - | Container class name |
style | CSSProperties | - | Container styles |
warpIntensity | number | 1.0 | Warp effect strength (0-1) |
blurPasses | number | 8 | Kawase blur passes (1-40) |
animationSpeed | number | 1.0 | Animation speed multiplier |
transitionDuration | number | 1000 | Crossfade duration in ms |
saturation | number | 1.5 | Color saturation multiplier |
tintColor | [r, g, b] | [0.16, 0.16, 0.24] | Tint color for dark areas (0-1) |
tintIntensity | number | 0.15 | Tint effect strength (0-1) |
dithering | number | 0.008 | Dithering strength (0-0.1) |
scale | number | 1.0 | Overall zoom level of the effect (0.01-4) |
AGPL-3.0
Built by Better Lyrics
FAQs
React component for Kawarp fluid animated backgrounds
We found that @kawarp/react demonstrated a healthy version release cadence and project activity because the last version was released less than 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
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.

Security News
Socket CEO Feross Aboukhadijeh joins Insecure Agents to discuss CVE remediation and why supply chain attacks require a different security approach.

Security News
Tailwind Labs laid off 75% of its engineering team after revenue dropped 80%, as LLMs redirect traffic away from documentation where developers discover paid products.