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

artemis-cli

v1.0.14

Published

One-command local dev infrastructure — deploy Postgres, Redis, MongoDB and more to Kubernetes instantly

Readme

Artemis 🚀

One command. Launch your entire local dev stack.

Artemis is a CLI tool that deploys production-grade local development infrastructure to Kubernetes — Postgres, Redis, MongoDB, Grafana, and more — with a single command. No YAML. No config files. No setup docs to follow.

Just run it, pick your services, and get copy-paste connection strings.


Quick Start

npx artemis-cli
  • Launches an interactive terminal UI
  • Shows your available Kubernetes clusters
  • Lets you pick which services to deploy
  • Pulls images, deploys everything in parallel
  • Gives you working connection strings the moment it's done

Prerequisites

  • Docker Desktop with Kubernetes enabled
    • Open Docker Desktop → Settings → Kubernetes → Enable Kubernetes → Apply
  • Node.js 18+

That's it.


Commands

npx artemis-cli            # launch the TUI and deploy services
npx artemis-cli status     # see what's running + connection strings
npx artemis-cli down       # tear everything down
npx artemis-cli connect    # port-forward all services to localhost
npx artemis-cli ui         # open the Mission Control web dashboard

Or install globally for shorter commands:

npm install -g artemis-cli

artemis                    # launch the TUI
artemis status
artemis down
artemis connect
artemis ui

Mission Control (Web UI)

Run npx artemis-cli ui to open a local web dashboard at http://localhost:4000:

  • Dashboard — live status of all deployed services with connection strings
  • PostgreSQL — browse tables and run SQL queries in the browser
  • Redis — browse keys, view values by type, add and delete keys
  • MongoDB — browse collections and inspect documents as JSON
  • Docs — copy-paste connection snippets for Node.js, Python, Prisma, Mongoose

Services

| Service | Description | Port | |--------------|------------------------------------|-------| | PostgreSQL | Relational database | 5432 | | Redis | In-memory cache / message broker | 6379 | | MongoDB | Document database | 27017 | | MySQL | Relational database | 3306 | | MinIO | S3-compatible object storage | 9000 | | Prometheus | Metrics collection | 9090 | | Grafana | Metrics dashboards | 3000 | | RabbitMQ | Message queue | 5672 |


How it works

  1. You pick services from the interactive menu
  2. Artemis pulls the Docker images locally (parallel, fast)
  3. Deploys them as Kubernetes workloads with persistent storage
  4. Exposes each service on a fixed port via NodePort + port-forwarding
  5. Prints connection strings — ready to paste into your app

All services use imagePullPolicy: IfNotPresent so once pulled, deploys are instant.


Built with


Built by Krish Pinto