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

@palr-dev/devstack-cli

v2.1.0

Published

A CLI tool for managing DevStack services.

Downloads

263

Readme

[!WARNING] 🚧 Work in Progress — This project is actively being developed. Features and configuration options may evolve between releases.


The Problem

Every new project starts the same way. You need a database. Maybe a cache. Maybe a message queue. So you spend the first hour of your day writing Docker Compose files, looking up environment variable names, figuring out which port conflicts with something else already running, and copy-pasting connection strings into your .env.

What devstack is

devstack is a CLI framework for managing local development infrastructure. It sits on top of Docker Compose and gives you a single, consistent interface for spinning up, inspecting, and tearing down the services your application depends on.

You describe your stack once. devstack handles the rest — generating the Compose configuration, starting the containers, and giving you the connection strings your app needs to connect to them.

devstack init my-project
devstack add postgres
devstack add redis
devstack add mailpit
devstack gen
devstack up

That's it. Postgres, Redis, and a local email catcher are running. Your stack is defined in a single devstack.config.json you can commit to version control so every person on your team starts from the same place.

The Philosophy

Convention over configuration. Every service comes with sensible defaults. You don't need to know the Postgres environment variable names, the Redis volume mount path, or the Elasticsearch Java heap flags. devstack knows them. You override only what you need to.

One config, zero drift. Your infrastructure lives in devstack.config.json alongside your code. When a teammate clones the repo and runs devstack up, they get the exact same environment you have. No "works on my machine."

Get out of your way. devstack doesn't try to be a platform or a deployment tool. It's a development utility. Its job is to get your local services running so you can focus on the code that actually matters.

What it includes

devstack ships with first-class support for the services developers reach for most:

  • PostgreSQL — Relational database
  • MySQL — Relational database alternative
  • MongoDB — Document database
  • Redis — In-memory cache and data store
  • RabbitMQ — Message broker with management UI
  • Elasticsearch — Search and analytics engine
  • MinIO — S3-compatible local object storage
  • Mailpit — Local SMTP catcher with web UI — test email flows without sending a single real email

Beyond just running services

Spinning up containers is the baseline. devstack goes further:

  • devstack info shows you a live dashboard of every service — what's running, what's stopped, and the exact connection string to paste into your app.
  • devstack env generates a ready-to-use .env file with connection strings for every configured service.
  • devstack open opens the web UI for services that have one — RabbitMQ's management console, MinIO's dashboard, Mailpit's inbox — directly in your browser.
  • devstack nuke tears everything down and resets your config when you need to start fresh.

Documentation

Full docs, service guides, and command reference at palr-dev.github.io/devStack.

Installation

npm install -g @palr-dev/devstack-cli

Prerequisites: Node.js >= 18 and Docker must be installed and running.

Contributing

Contributions are welcome. See the GitHub repository for development setup and contribution guidelines.

License

MIT