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

@clempixels/scaffold-node-cli

v1.0.0

Published

> The ultimate interactive CLI for scaffolding modern **Node.js backend projects** — with your favorite language, database, and ORM. > Choose TypeScript or JavaScript, MongoDB or PostgreSQL, Prisma or Drizzle — and get a full, ready-to-run starter proj

Readme

🚀 scaffold-node-cli

The ultimate interactive CLI for scaffolding modern Node.js backend projects — with your favorite language, database, and ORM.
Choose TypeScript or JavaScript, MongoDB or PostgreSQL, Prisma or Drizzle — and get a full, ready-to-run starter project instantly.

npm version npm downloads license


✨ Features

  • 🧠 Interactive setup — answer a few questions and get a full backend ready
  • ⚙️ Language support → TypeScript or JavaScript
  • 🧩 Frameworks → Express or Fastify
  • 🗃️ Databases → MongoDB (with Mongoose) or PostgreSQL (with Prisma/Drizzle)
  • 🧱 Prebuilt starter templates — instantly clones public repos for each stack
  • 🧑‍💻 CRUD demo included — every project starts with a simple working API
  • 🐳 Optional Docker setup for instant containerization
  • 🧰 Git initialization + first commit
  • 🎨 Pretty logs & spinners for a smooth experience

📦 Installation

Use NPX (recommended):

npx scaffold-node-cli

Or install globally:

Copy code
npm install -g scaffold-node-cli

Then run:

Copy code
scaffold-node-cli

🧠 How It Works The CLI will guide you through a short setup:

Copy code
? Project name: my-awesome-api
? Choose language: TypeScript
? Choose framework: Express
? Choose database: PostgreSQL
? Choose ORM: Prisma
? Add extras: Docker setup, JWT Auth, Initialize Git repo

Then it automatically:

Clones a matching public GitHub starter template

Cleans the .git folder (fresh start)

Installs dependencies

Optionally adds Docker & .env setup

Initializes Git

Prints next-step instructions 🎉

🧩 Supported Templates Stack Template Source TypeScript + Express + Prisma LuchoBazz/express-ts-rest-starter-kit TypeScript + Express + Mongoose ahmadjoya/typescript-express-mongoose-starter TypeScript + Express + Drizzle bitxon/ts-node-express-drizzle JavaScript + Express + Mongoose RickBr0wn/express-mongoose-template TypeScript + Fastify + Prisma hmake98/fastify-typescript

🧱 Example Usage

Copy code
$ npx scaffold-node-cli

Example session:

Copy code
? Project name: user-api
? Choose language: TypeScript
? Choose framework: Express
? Choose database: MongoDB
? Add extras: Docker setup, Initialize Git

✨ Output:

Copy code
✅ Cloning template...
✅ Installing dependencies...
✅ Setting up environment...
🎉 Project 'user-api' created successfully!

Next steps:
  cd user-api
  npm run dev
🐳 Optional Docker Setup
If you enable Docker support, the CLI automatically adds a Dockerfile and docker-compose.yml.

Run your app in a container:

Copy code
docker compose up
🧰 Commands Reference
Command Description
npx scaffold-node-cli # Start interactive project setup
npm run dev # Start the local dev server
npm run build # Build for production (TypeScript only)

🧑‍💻