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-stack

v0.1.2

Published

Polyglot CLI scaffolder — spin up full-stack projects with best practices baked in

Downloads

325

Readme

A polyglot CLI scaffolder for spinning up production-ready full-stack projects in seconds. Pick your backend language, pick your frontend framework — get independent, deployable projects with best practices baked in.

https://github.com/user-attachments/assets/fb0645c3-a05b-4f46-ac06-c3b4c1c2bab8

Philosophy

  • Polyglot by design: Mix any backend language with any frontend framework.
  • Independent projects: Sibling folders with separate git repos, not a monorepo.
  • AI-ready from day one: Every generated project includes a stack-specific CLAUDE.md.
  • Minimal templates: Zero bloat — each project runs immediately after scaffolding.

Quick Start

# Using bun (recommended)
bunx create-fs-stack@latest

# Using npx
npx create-fs-stack@latest

# Or run from source
git clone https://github.com/FabianLevi/create-fast-stack.git
cd create-fast-stack
bun install
bun run dev

Features

  • Backends: Python (FastAPI), Go (Chi), NestJS, Rust (Axum), C# (ASP.NET Core)
  • Frontends: React (Vite), Next.js, Angular 19, SvelteKit
  • Runtime: Bun or Node.js
  • Package Manager: npm, pnpm, or bun
  • Addons: Biome, Husky + lint-staged, Claude Skills, MCP servers
  • AI tooling: Framework-specific Claude skills bundled per project
  • Templates: Handlebars-powered dynamic CLAUDE.md, README.md, and config files

Every backend exposes GET /health with CORS pre-configured. Every frontend fetches and displays the backend status on load.

Supported Stacks

| Backend | Language | Frontend | Framework | |---------|----------|----------|-----------| | FastAPI | Python 3.12+ | React + Vite | React 19, Tailwind v4, Vitest | | Chi | Go 1.22+ | Next.js | Next 15, tRPC v11, Tailwind v4 | | NestJS | TypeScript | Angular | Angular 19, Tailwind v4, Vitest | | ASP.NET Core | C# 13 / .NET 10 | SvelteKit | Svelte 5, Tailwind v4, Vitest | | Axum | Rust 2021 | | |

Mix and match — any backend with any frontend.

Addons

| Addon | Description | |-------|-------------| | Biome | Fast, unified formatter and linter | | Husky | Git hooks with lint-staged pre-commit | | Skills | Framework-specific Claude Code skills | | MCP | MCP servers for enhanced AI context (Context7) |

Output Structure

Projects are created as independent sibling folders:

my-app/
├── my-app-backend/          # Independent git repo
│   ├── src/
│   ├── CLAUDE.md            # Stack-specific AI instructions
│   ├── .env.example
│   └── README.md
└── my-app-frontend/         # Independent git repo
    ├── src/
    ├── CLAUDE.md            # Stack-specific AI instructions
    ├── .env.example
    └── README.md