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

@mycli-cli/cli

v1.0.4

Published

MyCLI — Laravel Artisan-style development platform for Node.js. Scaffold APIs, full-stack apps, CRUD modules, auth, Docker, CI/CD, and cloud deploy with one CLI.

Readme

MyCLI

Laravel Artisan for Node.js — a production-grade TypeScript CLI that scaffolds full-stack apps, generates modules, and ships with auth, Docker, CI/CD, and 49+ plugins.

Install

npm install -g @mycli-cli/cli

Requires Node.js 22+.

Verify:

my --version
my --help

Quick start

# Create a new project (interactive wizard)
my create

# Or scaffold an API with defaults
my create my-api --yes

# Generate a CRUD module
cd my-api
my make crud product --fields name:string,price:number,description:text

# Add features
my add auth
my add rbac
my add swagger
my add docker
my add cicd --provider github

# Check project health
my doctor

What is MyCLI?

If you have used Laravel Artisan, Rails generators, or NestJS CLI, MyCLI brings the same workflow to Node.js and TypeScript.

One command creates a structured project. Generators add modules, CRUD, migrations, and tests — with routes and dependencies registered automatically.

Supported stacks

| Category | Options | |----------|---------| | Backend | Express, Fastify, Hono, Koa, NestJS | | Frontend | React, Next.js, Vue, Nuxt, Angular | | Database | PostgreSQL, MySQL, MariaDB, SQLite, MongoDB, Redis, SQL Server, CockroachDB | | ORM | Prisma, Drizzle, TypeORM, Mongoose, Sequelize, MikroORM | | Architecture | Monolith, modular monolith, microservice, monorepo, Clean Architecture, DDD | | Cloud | AWS, Azure, GCP, Railway, Render, Fly.io, Vercel, Netlify |

Core commands

my create              # Interactive project wizard
my make module user    # Generate a feature module
my make crud order     # Full CRUD with validation, Swagger, tests
my add auth            # JWT, OAuth, MFA, sessions, passkeys
my add rbac            # Roles & permissions
my add database        # DB config, migrations, seeders
my add docker          # Dockerfile + docker-compose
my add kubernetes      # K8s manifests
my add swagger         # OpenAPI / Swagger docs
my add testing         # Vitest, Jest, Playwright, Cypress
my role create admin   # RBAC role management
my permission create user.read
my plugin search docker
my plugin install @mycli-cli/docker
my deploy setup        # Cloud deployment configs
my doctor              # Project health check
my upgrade             # Safe project upgrades

Run my --help for the full command list (40+ commands and 49+ plugin commands).

Generators

my make list

my make module billing
my make controller auth
my make service payment
my make repository product
my make migration create_users
my make domain user          # Domain-Driven Design module
my make command create-order  # CQRS command + handler
my make queue send-email
my make mail welcome-email

Plugins

MyCLI is plugin-based. Official plugins cover auth, Docker, databases, cloud providers, CI/CD, and more.

my plugin search postgres
my plugin install @mycli-cli/postgres
my plugin list

Documentation

  • Docs site: https://rutvik-sonani.github.io/mycli-cli/
  • GitHub: https://github.com/Rutvik-sonani/mycli-cli
  • Issues: https://github.com/Rutvik-sonani/mycli-cli/issues

Who is it for?

  • Node.js / TypeScript developers who rebuild the same API skeleton every project
  • Startups shipping SaaS with auth, RBAC, and Docker included
  • Teams wanting consistent structure across microservices and monorepos
  • Anyone who wished Artisan existed for Node.js

License

MIT © Rutvik Sonani