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 🙏

© 2025 – Pkg Stats / Ryan Hefner

create-awesome-node-app

v0.7.0

Published

Command line tool to create Node apps with a lot of different templates and extensions.

Readme

Bootstrap production‑grade Node / Web / Full‑Stack / Monorepo / Extension apps in minutes. Pick a template → Add addons → Ship faster.

npm Downloads Commit Activity Bundle Size Awesome License: MIT

Tests Lint Typecheck Shellcheck Markdown Official Site · Templates · Extensions · Docs

Build. Extend. Ship. Pick a production‑grade template, layer powerful addons, and get a project that follows modern conventions, automation, and DX best practices out of the box.

# Interactive (recommended)
npm create awesome-node-app@latest my-app -- --interactive

# Direct + addons
npx create-awesome-node-app my-app \
  --template react-vite-boilerplate \
  --addons material-ui github-setup

What you get: Modern structure, linting, TS, testing, optional AI AGENTS.md, extensible addons, monorepo & full‑stack ready.


✨ Why Create Awesome Node App?

create-awesome-node-app (CNA) is a batteries‑included scaffolding CLI that lets you:

  • 🔌 Mix & match templates + addons (React, Next.js, NestJS, Turborepo, Web Extensions, UAT, Monorepos, and more)
  • 🧩 Add extensions (UI libraries, GitHub setup, auth, testing, tooling) at creation time
  • 🧪 Ship with testing & linting pre‑wired (ESLint, TypeScript, formatting, markdown lint, shellcheck, etc.)
  • 🧭 Use interactive mode to discover categories, templates, and compatible addons
  • 🚀 Start fast with production‑ready structure and opinionated defaults
  • 🤖 Get an automatic AGENTS.md contract in supported templates for AI assistant alignment
  • 🌐 Pull remote templates / extensions by URL – bring your own blueprints
  • 🧵 Keep everything Node 22 ready and future‑proof

On the Awesome List? ✅ Yes – we proudly display the Awesome Vite Mention.


🔗 Official Site

Explore visually: create-awesome-node-app.vercel.app

  • Browse all templates & categories
  • Filter by stack type (frontend, backend, full‑stack, monorepo, web extension, UAT, etc.)
  • Discover extensions to enrich your base
  • Learn how the generation pipeline works

🚀 Quick Start

Use via one‑shot runner (recommended – always latest). Interactive mode runs by default (unless CI):

npm create awesome-node-app@latest my-app
# or
pnpm create awesome-node-app my-app
# or
yarn create awesome-node-app my-app

Global install (optional):

npm install -g create-awesome-node-app
create-awesome-node-app my-app --template react-vite-boilerplate --addons material-ui github-setup

Minimal non‑interactive example:

npx create-awesome-node-app my-api \
  --template nestjs-boilerplate \
  --addons github-setup commitlint prettier

🧪 Interactive Mode Walkthrough

Interactive flow (default outside CI) lets you:

  1. Pick a category (Frontend, Backend, Full Stack, Monorepo, Web Extension, UAT...)
  2. Select a template with description & keywords
  3. Choose compatible extensions grouped by purpose
  4. Optionally extend with custom URLs

The CLI builds a tailored templatesOrExtensions pipeline and generates the workspace accordingly.


🧱 Template Ecosystem (Highlights)

| Category | Example Templates | | ------------- | ------------------------------------------------- | | Frontend | React Vite Boilerplate, Vue (via community), etc. | | Backend | NestJS Boilerplate, Express variants | | Full Stack | NextJS Starter (SSR + TS + ESLint + Prettier) | | Monorepo | Turborepo Boilerplate (TypeScript + Changesets) | | Web Extension | Cross‑browser modern extension bases | | UAT / Testing | Playwright / Cypress ready setups |

Full catalog: https://create-awesome-node-app.vercel.app/templates


🧩 Addons / Extensions

Enhance your template with modular capabilities (examples):

  • UI: Material UI, Tailwind, component libraries
  • State / Data: jotai, tRPC, React Query
  • Tooling: GitHub workflows, commit linting, changesets, release automation
  • Quality: ESLint configs, Prettier, TypeScript strictness
  • Testing: Playwright / Cypress scaffolds, vitest
  • DX: Environment setup, conventional commits, docs helpers

List what’s available:

create-awesome-node-app --list-templates
create-awesome-node-app --list-addons
# Filter addons compatible with a template
create-awesome-node-app --template react-vite-boilerplate --list-addons

Add any extra extension by URL (non‑interactive example shown):

create-awesome-node-app my-app \
  --template react-vite-boilerplate \
  --addons material-ui github-setup \
  --extend https://github.com/your-org/your-extension

🤖 AGENTS.md: Built-in AI Assistant Contract

Many templates ship with an auto‑generated AGENTS.md – a structured guide for AI coding assistants to understand project intent, conventions, and constraints. This improves code suggestion relevance and onboarding speed for hybrid human+AI teams.

Learn more: https://create-awesome-node-app.vercel.app/docs/agents-md


⚙️ Requirements

  • Node.js ≥ 22 (enforced via engine check)
  • Any of: npm / yarn / pnpm

We recommend fast version switching with fnm:

fnm use 22

🔍 CLI Options (Core)

| Flag | Description | | --------------------------- | ---------------------------------------------- | | --interactive | Force interactive (default outside CI) | | --no-interactive | Disable interactive wizard | | --template <slug\|url> | Use a known template slug or remote URL | | --addons [list...] | Space‑separated addon slugs or URLs | | --extend [list...] | Extra extension URLs (advanced) | | --no-install | Skip dependency installation | | --use-yarn / --use-pnpm | Force package manager | | --list-templates | Print templates grouped by category | | --list-addons | Print addons (optionally filtered by template) | | --verbose | Output resolved generation config | | --info | Print environment diagnostics |


🛠 Programmatic Usage (Experimental)

You can import helpers from the core package for custom tooling:

import { createNodeApp, getTemplateDirPath } from "@create-node-app/core";

🧪 Quality & Toolchain

Every generated project leans on modern, maintainable defaults:

  • TypeScript strict mode
  • ESLint (framework‑specific presets + consistency rules)
  • Prettier formatting (where applicable)
  • Testing support (varies by template: vitest, jest, e2e tooling)
  • GitHub Actions friendly
  • Conventional structure for CI/CD & release automation

❓ FAQ

Why another scaffolder? Because most CLIs lock you into one stack. CNA lets you compose your stack from curated templates + pluggable extensions.

Can I bring my own template? Yes – pass a GitHub (or any) URL pointing to a repository (optionally with subdirectory path) via --template.

Are addons order‑sensitive? They’re applied sequentially; conflicting changes should be resolved by your VCS if you customize heavily.

Does it support monorepos? Yes. The Turborepo boilerplate + addons give you multi‑package orchestration fast.

What about AI integration? AGENTS.md provides a structured spec for AI tools to align with your conventions.

Is Node 22 required? Yes – we target the latest stable modern runtime for performance & language features.


🤝 Contributing

We welcome templates, addons, fixes, and ideas! See the root repository guidelines: https://github.com/Create-Node-App/create-node-app/blob/main/CONTRIBUTING.md

For template & extension data visit: https://github.com/Create-Node-App/cna-templates


Roadmap (Short List)

  • More framework integrations (Remix, SvelteKit variants)
  • Additional testing packs (contract / performance harnesses)
  • Rich analytics for generation metrics
  • Template version pinning & diff upgrade paths

Follow progress in Issues & Discussions.


📜 License

MIT © Create Node App Contributors – see LICENSE