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

devdock-cli

v0.3.2

Published

AI-powered local dev environment manager — zero config, one command

Readme

AI-powered local dev environment manager

Clone any repo. Run one command. Everything just works.

npm License: MIT Node.js Docker CI Tests

Install · Demo · Commands · How It Works · Contributing


The Problem

You clone a repo. You spend the next 2 hours:

  • 😤 Figuring out which Docker services to spin up
  • 🔍 Hunting for .env values that aren't documented
  • 🔥 Debugging port conflicts with your other project
  • 💀 Googling why Postgres won't connect

devdock fixes all of this with one command.

$ devdock up

Demo

devdock demo

Click to watch — devdock up on a real Node.js + Postgres + Redis project


Install

npm install -g devdock-cli
devdock init

Requirements:

  • Node.js 18+
  • Docker Desktop (Windows/Mac) or Docker Engine (Linux)
  • Windows: Docker Desktop must be running
  • Free Groq API key → console.groq.com (needed for devdock doctor)

Commands

| Command | Description | |---|---| | devdock init | One-time setup — saves your Groq API key | | devdock up [path] | ⚡ Auto-detect stack + spin up all services | | devdock down [path] | Stop all services for a project | | devdock status [path] | Live container health + ports | | devdock doctor [path] | 🤖 AI diagnosis of broken environments | | devdock switch | Switch between projects instantly | | devdock list | All projects managed by devdock |


How It Works

Your Repo

┌──────────────────────────────────────┐

│ 📦 Project Analyzer │

│ reads package.json, .env.example, │

│ Dockerfile, requirements.txt │

└──────────────────┬───────────────────┘

│ detects stack + services

┌──────────────────────────────────────┐

│ 🐳 Docker Manager │

│ pulls images, creates network, │

│ starts containers on free ports │

└──────────────────┬───────────────────┘

│ service URLs + ports

┌──────────────────────────────────────┐

│ ⚙️ ENV Generator │

│ creates .env with connection │

│ strings auto-filled │

└──────────────────┬───────────────────┘

┌──────────────────────────────────────┐

│ 🤖 AI Engine (Groq / llama-3.3-70b) │

│ diagnoses issues, infers missing │

│ config, explains root causes │

└──────────────────────────────────────┘

Supported Stacks

| Stack | Detected via | |---|---| | 🟢 Node.js | package.json | | 🐍 Python | requirements.txt, pyproject.toml | | 🐘 PHP | composer.json | | 🐹 Go | go.mod |

Supported Services

| Service | Image | Default Port | |---|---|---| | 🐘 PostgreSQL | postgres:15-alpine | 5432 | | 🔴 Redis | redis:7-alpine | 6379 | | 🍃 MongoDB | mongo:7 | 27017 | | 🐬 MySQL | mysql:8 | 3306 | | 🐇 RabbitMQ | rabbitmq:3-management-alpine | 5672 |

Port conflict resolution built-in — if 5432 is taken, devdock finds the next free port automatically.


Why devdock?

| Feature | devdock | Manual setup | docker-compose | |---|---|---|---| | Auto-detects services | ✅ | ❌ | ❌ | | Generates .env | ✅ | ❌ | ❌ | | Port conflict resolution | ✅ | ❌ | ❌ | | AI diagnosis | ✅ | ❌ | ❌ | | Multi-project switching | ✅ | ❌ | ❌ | | Zero config needed | ✅ | ❌ | ❌ |


Contributing

PRs welcome!

git clone https://github.com/Roshu09/devdock.git
cd devdock
npm install
npm link --workspace=packages/cli
devdock --version

See CONTRIBUTING.md for details.


Tech Stack

Built with: Node.js · Commander.js · Dockerode · Groq AI · Inquirer.js · Chalk · Ora


MIT © Roshan Kumar · npm · Report a Bug

Built by a developer, for developers 🚀