npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

matrix-rain-webgpu

v2.0.2

Published

WebGPU/TypeGPU Matrix-rain background effect for React.

Readme

matrix-rain-webgpu

npm CI Deploy

A Matrix-style "digital rain" background effect for React, rendered on the GPU with WebGPU via TypeGPU. GPU-driven simulation, signed-distance-field glyphs, depth parallax, bloom, and a CRT post-process.

▶ Live demo & full documentation: https://chicio.github.io/chicio-blog/matrix-rain/

It powers the animated background on fabrizioduroni.it. Requires a WebGPU-capable browser (recent Chrome / Edge / Safari / Firefox).

Install

npm install matrix-rain-webgpu react react-dom

react/react-dom (v19) are peer dependencies. The TypeGPU packages (typegpu/@typegpu/react/@typegpu/noise) are regular dependencies, exact-pinned to versions this library is tested against — you don't install or track them yourself. The shaders are pre-compiled at publish time, so you do not need any TypeGPU build plugin.

Using TypeGPU directly in your app? Align your typegpu/@typegpu/* versions with the ones this package pins (see its package.json): npm then dedupes to a single instance. Two different copies of typegpu or @typegpu/react in one bundle break the 'use gpu' shader registry and the shared root context.

Module resolution: the published types target bundler-style resolution (moduleResolution: "bundler" / "node"), which is what Vite, Next.js, and most React setups use. Strict "node16"/"nodenext" resolution isn't supported yet.

Usage

The component renders a <canvas> that fills its positioned parent and ignores pointer events:

import { MatrixRainWebGPU } from 'matrix-rain-webgpu';

export function Background() {
  return (
    <div style={{ position: 'relative', width: '100%', height: '100dvh' }}>
      <MatrixRainWebGPU />
    </div>
  );
}

Everything is optional and grouped — omit for defaults, pass an object to tune, or false to disable an effect:

<MatrixRainWebGPU rain={{ fontSize: 24 }} bloom={{ intensity: 2 }} crt={false} />

WebGPU isn't available everywhere; gate on isWebGPUSupported() and render your own fallback when it's missing:

import { MatrixRainWebGPU, isWebGPUSupported } from 'matrix-rain-webgpu';

return isWebGPUSupported() ? <MatrixRainWebGPU /> : <My2DFallback />;

Documentation

Full docs live on the site — including the interactive playground:

Local development

This package lives in the chicio-blog monorepo. The library is here; its docs and demo site are the sibling apps/matrix-rain-showcase workspace, an Astro + Starlight app.

Clone the monorepo and install once from its root — npm workspaces links the two together, so the showcase renders this package's source rather than a published copy.

npm install                                          # from the repository root

npm run build   --workspace=matrix-rain-webgpu       # library: vite + declarations
npm run lint    --workspace=matrix-rain-webgpu       # oxlint + oxfmt
npm run types   --workspace=matrix-rain-webgpu       # tsc -b

npm run dev     --workspace=matrix-rain-showcase     # the docs + demo site

This package keeps its own toolchain — oxlint, oxfmt and Vite — rather than the monorepo's ESLint and tsdown. lint and typecheck are thin aliases over the former so it still joins the repository-wide gates (npm run lint from the root fans out across every workspace).

Author

Built by Fabrizio Duroni. If you enjoy it, a visit to the site is the best way to support the work. Also don't forget :star: to star the monorepo :star:.