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

kickstack

v1.1.3

Published

Clean React + Vite project scaffolder

Downloads

216

Readme

🚀 kickstack

kickstack is a lightweight CLI tool that scaffolds a clean, minimal React + Vite project — without demo clutter, boilerplate noise, or unnecessary setup.

It helps you start coding immediately, instead of deleting files first.

🌐 Live Website

👉 kickstack.shoaaib.site


✨ What is kickstack?

kickstack is an npm-based command-line tool that creates a fresh React project using the latest Vite template, while removing all default demo code and test styles.

Instead of logos, counters, and animations, you get a blank, ready-to-build foundation.

Think of it as a clean canvas instead of a demo showroom.


🧠 What does it do?

When you run kickstack, it automatically:

  • Creates a React project powered by Vite
  • Removes all demo and testing content
  • Gives you a clean App component
  • Optionally configures Tailwind CSS
  • Optionally configures DaisyUI (UI library)
  • Optionally adds React Router (data router)
  • Prompts to start the dev server after setup
  • Produces a project that runs instantly

📦 What you get by default

Every project created with kickstack includes:

  • React + Vite
  • Clean index.html
  • Minimal main.jsx / main.tsx
  • Minimal App.jsx / App.tsx
  • Empty App.css
  • Optional Tailwind CSS (v4)
  • Optional DaisyUI (Tailwind UI plugin)
  • .gitignore and README.md
  • Ready-to-run development server

The default UI is intentionally simple:

<h1>Welcome to my project</h1>

Nothing extra. No clutter.


🎯 Project variants you can choose

When running the CLI, you’ll be prompted to select one of the following:

  1. React (JavaScript)
  2. React + Tailwind (JavaScript)
  3. React + TypeScript
  4. React + TypeScript + Tailwind

Each option generates the correct files, dependencies, and configuration automatically.

You can also choose to include React Router (data router) and an optional UI library (DaisyUI) during setup.


🔥 Why kickstack instead of default Vite?

Vite’s default React template is designed to demonstrate features, not to start real projects.

kickstack is designed for actual development.

🧹 No demo clutter

Vite includes:

  • logos
  • counters
  • demo components
  • animations
  • sample styles

kickstack removes all of that.

You don’t delete code — you start writing code.


⚡ Start coding immediately

With default Vite:

  1. Delete demo JSX
  2. Remove unused imports
  3. Clean CSS
  4. Fix ESLint warnings

With kickstack:

  • Your first line of code is already yours.

🎯 Beginner-friendly

No confusion about:

  • what to delete
  • what is demo code
  • what is important

Perfect for:

  • beginners
  • students
  • learning projects
  • teaching React

🎨 Tailwind ready (optional)

Tailwind CSS is:

  • installed
  • configured
  • imported

No manual setup required.


🌼 DaisyUI ready (optional)

DaisyUI is:

  • installed
  • configured in Tailwind
  • enabled in index.css

No manual setup required.


🧭 React Router ready (optional)

Choose to include React Router (data router) and start with a clean router setup out of the box.


🪶 Lightweight and focused

kickstack does one thing well:

Create a clean React starting point.

No heavy frameworks. No opinions forced on you. Uses the latest Vite template instead of hard-coding files.


📊 Comparison

| Default Vite | kickstack | | --------------------- | ---------------------- | | Demo-focused | Project-focused | | Requires cleanup | Ready immediately | | Extra styles | Clean styles | | Manual Tailwind setup | Tailwind preconfigured | | Manual UI setup | DaisyUI optional | | Manual Router setup | Router optional |


🛠 Requirements

You only need Node.js.

  • Node.js 18+ recommended
  • npm comes bundled with Node.js

Check installation:

node -v
npm -v

▶️ How to use kickstack

Create a new project

npm kickstack my-app

or

npx kickstack@latest my-app

Follow the prompts to choose your preferred setup.


Start the development server

cd my-app
npm run dev

Your app will be available at:

http://localhost:5173

📁 Example project structure

my-app/
├─ src/
│  ├─ App.jsx
│  ├─ App.css
│  ├─ main.jsx
│  └─ index.css
├─ public/
├─ index.html
├─ vite.config.js
├─ .gitignore
└─ package.json

👤 Author

Created and maintained by Shoaib Taimur.


🏁 Final note

If Vite gives you a demo app, kickstack gives you a starting point.

No cleanup. No confusion. Just build.