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

@juggling-tools/simulator-react

v1.1.0

Published

React bindings for [`@juggling-tools/simulator`](../core). Provides a compound component API for declaratively rendering animated juggling patterns on a canvas. See it in action at [jugglingtools.com](https://jugglingtools.com).

Readme

@juggling-tools/simulator-react

React bindings for @juggling-tools/simulator. Provides a compound component API for declaratively rendering animated juggling patterns on a canvas. See it in action at jugglingtools.com.

Installation

npm install @juggling-tools/simulator-react @juggling-tools/simulator react react-dom

Quick start

import { Simulator } from "@juggling-tools/simulator-react";

const App = () => (
  <Simulator.Root siteswap="531" autoStart>
    <Simulator.Canvas style={{ width: "100%", height: 400 }}>
      <Simulator.Juggler />
      <Simulator.Ball color="red" />
      <Simulator.Ball color="green" />
      <Simulator.Ball color="blue" />
    </Simulator.Canvas>
  </Simulator.Root>
);

Components

<Simulator.Root>

Provider that manages the simulator lifecycle. Wraps everything else.

| Prop | Type | Default | Description | | ----------------- | ---------------------- | ----------- | ------------------------------- | | siteswap | string | required | Siteswap pattern (e.g. "531") | | autoStart | boolean | true | Start animating on mount | | beatDuration | number | 360 | Milliseconds per beat | | dwellRatio | number | 0.6 | Fraction of beat spent in hand | | arcPeakPosition | number | 0.55 | Throw arc peak skew | | background | string | "#111111" | Canvas background color | | onError | (err: Error) => void | - | Called on siteswap parse errors |

Supports ref for imperative control via SimulatorHandle:

const ref = useRef<SimulatorHandle>(null);

<Simulator.Root ref={ref} siteswap="3" autoStart={false}>
  {/* ... */}
</Simulator.Root>;

ref.current?.start();
ref.current?.setSiteswap("441");

<Simulator.Canvas>

Renders the <canvas> element. Accepts standard HTML canvas props (style, className, etc.). Auto-resizes via ResizeObserver when width/height are not set.

<Simulator.Juggler>

Configures the stick-figure juggler. Place inside Canvas. Renders nothing to the DOM.

Pass a render function as children for custom drawing:

<Simulator.Juggler>
  {({ ctx, width, height, handPositions }) => {
    // draw your own juggler
  }}
</Simulator.Juggler>

<Simulator.Hands> / <Simulator.Hand>

Configure hand rendering. Hands is the container; Hand children define per-hand renderers.

<Simulator.Hands count={2}>
  <Simulator.Hand>
    {({ ctx, position, canvasWidth }) => {
      /* custom hand */
    }}
  </Simulator.Hand>
</Simulator.Hands>

If the pattern has more hands than Hand children, renderers cycle.

<Simulator.Ball>

Configures a ball. color is required. Define one per ball, or fewer to cycle.

<Simulator.Ball color="#ff6600" />
<Simulator.Ball color="#00ccff">
  {({ ctx, position, color, canvasWidth }) => { /* custom ball */ }}
</Simulator.Ball>

Hook

useSimulator()

Access simulator state from any component inside Root:

const { siteswap, setSiteswap, start, stop, isRunning, error } = useSimulator();

Examples

For a full example with custom ball renderers, custom juggler drawing, and playback controls via the useSimulator hook, see the simulator demo page.

Peer dependencies

  • react ^18 or ^19
  • react-dom ^18 or ^19
  • @juggling-tools/simulator >=0.1.0

License

MIT