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

@rotorsh/cli

v0.1.3

Published

Rotor CLI — manage queues, schedules, jobs, DLQ replay, API keys, and workspaces from your terminal.

Readme

@rotorsh/cli

Command-line interface for Rotor — manage queues, schedules, jobs, DLQ replay, API keys, and workspaces from your terminal. Built for Claude Code-using GTM engineers.

60-second quickstart

# 1. Install globally
npm i -g @rotorsh/cli

# 2. Authenticate (paste your rt_ws_* workspace API key when prompted)
rotor login

# 3. Create your first queue
rotor queues create welcome-emails --concurrency 5 --retry-attempts 3

# 4. Inspect workspace status
rotor status

That's it — you now have a queue ready to receive jobs. See the full quickstart for the 30-minute callback-handler walkthrough.

Full install guide

docs.rotor.sh/quickstart

Common commands

rotor queues list              # see all queues with depth + concurrency
rotor schedules create --cron "0 9 * * *" --timezone UTC --queue welcome-emails
rotor jobs add welcome-emails  # enqueue a single job (payload via --data or stdin)
rotor jobs add-batch welcome-emails --file batch.json  # enqueue from JSON/CSV
rotor dlq list                 # inspect dead-letter queue
rotor dlq replay <jobId>       # idempotent replay
rotor status --watch           # live workspace dashboard (Ctrl+C to exit)

Every command supports --json for piping to jq. Run rotor <group> --help for the full flag set.

What this is

A workspace-scoped CLI that talks to api.rotor.sh over REST. The same backend powers the Rotor SDK, MCP server, and dashboard.

What this is not

  • An admin tool. Workspace-creation and team-administration are operator-only and ship in a separate channel.
  • A worker runtime. To process jobs in your own code, install @rotorsh/sdk and use the Worker class — or configure HTTP callbacks per queue.

License

Closed-source — rotor.sh commercial license. Bug reports welcome at github.com/shyftai/rotor/issues.