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

create-fs-cli

v2.0.1

Published

CLI tool to scaffold full-stack applications with interactive prompts

Readme

create-fs-cli

Production-ready CLI for scaffolding full-stack apps in either classic prompts or fullscreen TUI mode.

npm

  • Package page: create-fs-cli on npm
  • Install globally: npm install -g create-fs-cli
  • Run without install: npx create-fs-cli@latest

Requirements

  • Node.js 18+
  • npm
  • git (recommended)

Quick Start

1) Use without global install (recommended)

# Classic interactive mode
npx create-fs-cli@latest

# Pass project name directly (like create-next-app)
npx create-fs-cli@latest my-app

# Pass project name + frontend language directly
npx create-fs-cli@latest my-app ts
npx create-fs-cli@latest my-app js

# Fullscreen TUI mode (red/white interface)
npx create-fs-cli@latest --tui
npx create-fs-cli@latest my-app --tui

2) Global install (production workflow)

npm install -g create-fs-cli

create-fs-cli --help
create-fs-cli
create-fs-cli my-app
create-fs-cli my-app ts
create-fs-cli --tui
create-fs-cli my-app --tui
create-fs-cli my-app ts --tui

3) Local development (this repository)

git clone https://github.com/HemanthRaj0C/fullstack-cli.git
cd fullstack-cli
npm install

# Run from repo root
npm run dev
node src/index.js
node src/index.js my-app
node src/index.js my-app ts
node src/index.js --tui
node src/index.js my-app --tui
node src/index.js my-app ts --tui

# If you cd into src/
node index.js
node index.js my-app

4) Test local build as a global command

npm link
create-fs-cli --help
create-fs-cli --tui

Demo Video

Demo video preview

Direct link: recordings/demo_video.mp4

Screenshots

TUI Mode

TUI mode

Classic Mode (Non-TUI)

Classic mode

Help Output

Help output

Help Commands

create-fs-cli --help

# Local development equivalents
node src/index.js --help

Project Name Rules

  • Allowed characters: letters, numbers, dashes (-), underscores (_).
  • Must start with a letter or number.
  • Maximum length: 50 characters.
  • Interactive input validates immediately.
  • Direct CLI names are auto-sanitized when possible.
  • Optional second positional arg accepts frontend language (js or ts).

Examples:

npx create-fs-cli@latest "My App"      # sanitized to My-App
npx create-fs-cli@latest "app@2026"    # sanitized to app2026

If a name cannot be sanitized into a valid value, the CLI exits with a clear error and suggestion.

Positional Frontend Language Argument

You can pass frontend language directly as the second positional argument:

create-fs-cli my-app ts
create-fs-cli my-app js

Accepted values:

  • js or javascript
  • ts or typescript

Argument order:

create-fs-cli [project-name] [frontend-language]

UI Modes

  • --tui: fullscreen wizard with guided selections, overwrite confirmation, and live generation progress.
  • Classic mode: standard terminal prompts.
  • Both modes include explicit frontend language selection (JavaScript or TypeScript).

Both modes enforce the same stack validation rules and generation behavior.

Features

  • Fullscreen TUI and classic prompt mode.
  • Frontend: Next.js, React + Vite, SvelteKit (JavaScript or TypeScript).
  • Backend: Next.js API Routes (integrated), Express, Fastify, FastAPI.
  • Database: PostgreSQL, MongoDB, MySQL, Supabase, None.
  • Safe overwrite confirmation before deleting existing directories.
  • BackendStatus component auto-injection for frontend health visibility.
  • Preflight checks before generation.

Valid Stack Matrix

  • Next.js API Routes (integrated) is available only when frontend is Next.js.
  • With Next.js API Routes, database is forced to None.
  • FastAPI + MySQL is not supported by templates; selection is normalized to PostgreSQL with warning.

Generated Structure

my-project/
├── frontend/
│   ├── src/components/
│   │   └── BackendStatus
│   └── package.json
├── backend/              # only for non-integrated backends
│   ├── config/
│   ├── routes/
│   └── .env.example
├── .gitignore
└── README.md

Contributing

Contributions are welcome.

  1. Fork the repository.
  2. Create a branch: git checkout -b feature/your-change.
  3. Make and test your changes.
  4. Push your branch.
  5. Open a pull request.