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

accelr8

v3.8.2

Published

Collaborative ascii canvas in your terminal. Real multiplayer, live cursors, mouse-driven TUI.

Readme

accelr8

Collaborative ascii canvas in your terminal. A real CLI app: mouse-driven TUI, real multiplayer, and live cursors that glide as your friends move them.

   ('-.                                ('-.               _  .-')
  ( OO ).-.                          _(  OO)             ( \( -O )
  / . --. /    .-----.     .-----.  (,------.  ,--.       ,------.    .-----.
  | \-.  \    '  .--./    '  .--./   |  .---'  |  |.-')   |   /`. '  /  .-.  \
.-'-'  |  |   |  |('-.    |  |('-.   |  |      |  | OO )  |  /  | | |   \_.' /
 \| |_.'  |  /_) |OO  )  /_) |OO  ) (|  '--.   |  |`-' |  |  |_.' |  /  .-. '.
  |  .-.  |  ||  |`-'|   ||  |`-'|   |  .--'  (|  '---.'  |  .  '.' |  |   |  |
  |  | |  | (_'  '--'\  (_'  '--'\   |  `---.  |      |   |  |\  \   \  '-'  /
  `--' `--'    `-----'     `-----'   `------'  `------'   `--' '--'   `----''

Install

npm install -g accelr8

Use

accelr8                 # open the app
accelr8 join XYMRAU     # jump straight into a friend's project
accelr8 --name pat      # pick your display name (remembered)

Create a project in the Projects tab, paint on the Canvas by clicking and dragging (right-click erases), and grab the join code from the Members tab. Everyone in a project sees everyone else's cursor move live.

 accelr8   collaborative ascii canvas                               you ●
  Projects     Canvas     Members                                  ● live
────────────────────────────────────────────────────────────────────────
 brush  █ ▓ ▒ ░ ● ◆ ★ ▲ ■ · # @ *  ⌫ erase                        clear
┌─ canvas 100×30 ───────────────────────────────────────────────────────┐
│      █                                                                 │
│       █                    ▲ alice                                     │
│        █                                                               │
│                                       ▲ bob                            │
└────────────────────────────────────────────────────────────────────────┘
 landing page redesign  ·  code XYMRAU  ·  3 online      [tab] switch  [q] quit

Controls

| Input | Action | |---|---| | Mouse click | tabs, buttons, project rows, palette | | Click + drag on canvas | paint with the current brush | | Right-click on canvas | erase a cell | | Tab / 1 2 3 | switch tabs | | q / Ctrl-C | quit |

How the live cursors work

The terminal reports mouse motion via ANSI escape sequences (any-event tracking, ESC[?1003h). The app:

  1. Throttles outgoing cursor positions to ~25/sec.
  2. Interpolates on the receiving side: each remote cursor lerps toward its last reported position every frame (x += (target - x) * 0.35), so it glides smoothly instead of teleporting between throttled updates.

Sparse sends plus client-side smoothing is what makes it feel live.

Sync server

By default the CLI talks to the hosted sync server (a Cloudflare Worker with a Durable Object, source in worker/). You can point it anywhere:

accelr8 --server ws://localhost:8787      # or export ACCELR8_SERVER=...

Self-hosting

accelr8 serve                 # starts a sync server on :8787
accelr8 serve --port 9000     # custom port

Expose it beyond your machine with a quick tunnel:

cloudflared tunnel --url http://localhost:8787
# friends then run: accelr8 --server wss://something.trycloudflare.com

Deploy your own copy of the hosted worker:

cd worker && npx wrangler deploy

Development

npm install
npm run dev              # run the TUI from source
npm run serve            # run the sync server from source
npm run smoketest        # headless two-client sync test (needs a server)
npm run rendertest       # headless frame dumps of every screen
npm run build            # bundle dist/cli.js

Layout:

  • src/protocol.ts shared wire types + constants (fixed 100×30 logical canvas)
  • src/cli.ts entry point, arg parsing
  • src/client.ts the TUI: mouse/keyboard, flicker-free rendering, cursor lerp
  • src/server.ts self-host sync server (Node, ws)
  • worker/ hosted sync server (Cloudflare Worker + Durable Object)