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

clementine-cli

v0.2.2

Published

🍊 Instant setup for Cloudflare Workers primitives.

Readme

🍊 Clementine

Instant setup for Cloudflare Workers projects. Get Workers and Queues running in seconds.

Quick Start

npx clementine-cli

What You Get

Interactive menu to create:

  • Worker with Queues - Full queue demo with interactive dashboard
  • Worker only - Basic Worker project

Smart detection of existing projects:

  • Automatically adds Queues to existing Workers
  • Preserves your config format (JSONC or TOML)

One-command deployment (optional):

  • Auto-creates queues in Cloudflare
  • Deploys your Worker
  • Handles everything for you

Examples

Create a new Worker with Queues

$ clementine
? What would you like to create? › Worker with Queues
? Project name? › my-app
? Queue name? › my-queue
? Deploy to Cloudflare now? › Yes

✓ Queue created
✓ Deployed!
🎉 Your queue worker is live!

Create a basic Worker

$ clementine
? What would you like to create? › Worker only
? Project name? › my-worker
✓ Created!

Add Queues to existing Worker

$ cd my-existing-worker
$ clementine
? What would you like to add? › Queues
✓ Queue configuration added!

Queue Demo Features

The queue demo includes:

  • Interactive dashboard at / - watch messages flow in real-time
  • Producer - enqueue messages via POST
  • Consumer - processes batches automatically
  • Event tracking - see every phase (pending → batched → processing → acked)
  • Retry simulation - 20% failure rate to demonstrate retries
  • Durable Objects - stores events for the dashboard

Try it:

npm run dev
# Open http://localhost:8787
# Click "Enqueue Message" or POST to /

Options

clementine              # Interactive mode
clementine queues       # Direct to queues
clementine --new        # Force new project
clementine --add        # Force add to existing
clementine --help       # Show help

Requirements

  • Node.js 18+
  • Internet connection
  • Cloudflare account (for deployment)

License

MIT