
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
@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
The npm package @kawarp/react receives a total of 2 weekly downloads. As such, @kawarp/react popularity was classified as not popular.
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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.