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

v1.0.7

Published

Sudarshan's React project starter with multiple templates

Readme

create-sudarshan-stack

Sudarshan's personal React project starter — scaffold a new project in seconds, just like Vite.

Quick Start

npm create sudarshan-stack

The CLI will guide you step by step — ask for a project name, then let you pick a template interactively.


Templates

| Template | Stack | |---|---| | react | React + Vite + Tailwind | | react-ts | React + Vite + Tailwind + TypeScript | | react-shadcn | React + Vite + Tailwind + TypeScript + Shadcn UI | | react-full | React + Vite + Tailwind + TypeScript + Shadcn UI + TanStack Query + TanStack Router |


Usage

Interactive (recommended)

npm create sudarshan-stack
  create-sudarshan-stack

  Project name: › .
  Select a template: › React Full
  
  ✅ Project "my-app" created with template: react-full

  Next steps:

    cd my-app
    npm install
    npm run dev

Skip prompts with flags

npm create sudarshan-stack my-app --template react-full

Scaffold into current folder

cd my-existing-folder
npm create sudarshan-stack
# When asked for project name, type "." and press Enter

Edge Cases Handled

Current folder scaffolding

Typing . as the project name scaffolds directly into your current working directory — no subfolder created. If the folder is not empty, you get a confirmation prompt before anything is touched. The current folder is never deleted.

Existing folder

If a subfolder with the same name already exists, you get a confirmation prompt to overwrite. On confirmation the old folder is fully removed before the fresh template is copied in.

Invalid project name

Only lowercase letters, numbers, hyphens and underscores are allowed. Any other input is rejected with a clear error message before any files are touched.

Unknown template flag

If you pass --template something-wrong, the CLI rejects it immediately and lists all valid template names.

Ctrl+C anywhere

Hitting Ctrl+C at any prompt cancels the setup cleanly and exits with a clear message — no hanging process, no partial files left behind.

Failed file copy

If the file copy fails mid-way for any reason, any partially created subfolder is automatically cleaned up. The current working directory is never deleted even on failure.

Missing template folder

If a template folder is somehow missing from the package, you get a clear error telling you to reinstall instead of a cryptic Node.js crash.


After Scaffolding

cd my-app       # skip this if you used "."
npm install
npm run dev

Publishing a New Version

When you update a template or fix something:

npm version patch   # or minor / major
npm publish

Author

Made with love by Sudarshan