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

@oodarun/cli

v0.1.7

Published

Launch Claude Code on cloud dev environments

Downloads

858

Readme

@oodarun/cli

Design on your codebase in the cloud, no local setup required.

ooda.run

Ooda launches Claude Code on cloud sandboxes. Each project runs in its own isolated cloud environment with a public URL — no local dependencies, no Docker, no setup headaches.

Quick start

npx @oodarun/cli

Or install globally for a shorter command:

npm install -g @oodarun/cli
ooda

On first run you'll be prompted to sign in with your email. If your org is already set up, you'll be connected to it automatically. Otherwise an org admin can invite you.

Your credentials are saved to ~/.ooda/auth.json so you only need to do this once.

What it does

When you connect to a project, ooda automatically asks Claude to analyse your codebase, install dependencies, and start the dev server — no manual prompting needed. You're dropped into a full Claude Code session with syntax highlighting, tool use, and everything you'd get locally.

  Your projects:
    [1] new-nav             ● running
    [2] marketing-redesign  ○ stopped
    [3] shader-tool         ○ stopped

  [d] Deploy current directory
  [n] New project (opens dashboard)
  [q] Quit

  Select: _
  • Pick a project — connects and launches Claude Code with full TTY pass-through
  • Deploy current directory — uploads your local project to a new sandbox and starts Claude on it
  • New project — opens the local web dashboard to create from a template

When you exit Claude (Ctrl+C), you're returned to the selector.

Dashboard

Ooda includes a local web dashboard at http://localhost:4444 for managing your projects visually. Browse existing projects, create new ones from templates, or deploy a local folder — all from your browser.

Parallel sessions

Work on multiple projects simultaneously by opening additional terminals:

# Terminal 1 — main menu + first project
npx @oodarun/cli

# Terminal 2 — connect directly to another project
ooda connect marketing-redesign

# Terminal 3 — and another
ooda connect shader-tool

ooda connect <name> skips the dashboard and connects straight to the named project. It uses prefix matching, so ooda connect market will match marketing-redesign-m3np.

Multi-language support

Each sandbox is a full Linux environment with root access. While ooda includes optimised support for JavaScript frameworks (Astro, Next.js, Vite), Claude can work with any language or framework — Ruby/Rails, Python/Django, PHP/Laravel, Go, Rust, and more. Claude analyses your codebase and figures out the right setup automatically.

Publishing

Tell Claude to publish your project and get a permanent shareable URL in seconds:

You: publish this
Claude: Building... uploading... done!
        Published: https://ooda.run/p/your-project
  • Every publish creates a new version — previous versions stay accessible via ?v=N
  • Published sites are static (HTML, CSS, JS) served from Cloudflare's edge
  • Free, no limits on projects or versions

You can also use the /project:publish slash command in a Claude session.

Why not just use localhost?

  • Consistent environments — every sandbox is identical, no "works on my machine" issues
  • Safe by default — Claude runs with full permissions in a sandbox, no risk to your local filesystem
  • Publish for free — tell Claude to publish and get a permanent URL at ooda.run/p/your-project
  • Collaboration — every project gets a public URL, visible to all org members in the dashboard
  • Run anything, anywhere — full cloud sandbox from a laptop, tablet, or phone

Commands

npx @oodarun/cli                       # Interactive menu + dashboard
ooda connect <name>                    # Direct connect (for parallel sessions)
ooda list                              # List your projects
ooda --port 3000                       # Custom dashboard port (default: 4444)

Auth options

| Method | Details | |--------|---------| | Interactive prompt | Sign in with email on first run (saved to ~/.ooda/auth.json) | | Environment variables | OODA_ACCESS_TOKEN and OODA_ORG_ID | | Claude Code OAuth | If you have Claude Code installed on macOS, the OAuth token is read from your keychain automatically |

Requirements

  • Node.js 20+
  • An ooda account — org admins invite members, or sign up at ooda.run
  • An Anthropic API key or a paid Claude subscription with OAuth

More info