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-react-nova

v1.2.14

Published

Zero-config CLI to scaffold a modern Vite + React (TS/JS) project with Tailwind CSS v4, Bootstrap 5, or none, plus optional extras: Framer Motion, React Hook Form, React Router, Redux Toolkit, Zustand, Axios – and auto-cleaned boilerplate.

Downloads

201

Readme

Author: Hadi Baydoun

Interactive CLI that scaffolds a Vite + React app (JavaScript or TypeScript) with optional Tailwind CSS v4, Bootstrap 5, or no CSS framework — plus optional tooling, fonts, i18n, linting, and a cleaned starter tree.

npm package name: create-react-nova. This repository lives under the create-reactnova workspace.

What it does (end-to-end)

  1. Asks for a project name (required; placeholder my-app).
  2. If the target folder already exists and is not empty, asks to delete everything and continue or cancel.
  3. If ~/.create-react-nova-config.json exists, offers Continue with previous setup or Start fresh (reuses saved choices except you still pick an available package manager).
  4. Runs npm / yarn / pnpm / bun create vite@latest (or the equivalent for each tool) with template react-ts or react.
  5. Installs root dependencies, then optional packages, configures CSS, fonts, ESLint/Prettier, i18n, TypeScript path alias, clears public/ and src/assets/, replaces App / index.css from templates, removes src/App.css.
  6. Optionally git init.
  7. Saves the full interactive configuration to ~/.create-react-nova-config.json for the next run.
  8. Asks whether to start the dev server now or print next steps (cd + run dev).

Features

  • Vite + React with official react or react-ts templates
  • Package managers: npm, yarn, pnpm, bun (with PATH check and re-pick if missing)
  • Language: TypeScript or JavaScript
  • CSS: Tailwind v4 (tailwindcss, @tailwindcss/vite), Bootstrap (bootstrap, react-bootstrap), or none (minimal index.css template)
  • Default font: system stack or Google Font presets (see below) — injected in index.html / Tailwind @theme / body as appropriate
  • ESLint + Prettier: flat eslint.config.js, prettier.config.mjs, .prettierignore, scripts lint, lint:fix, format, format:check
  • TypeScript path alias: @/*src/* in tsconfig.app.json and Vite when needed; note shown after setup
  • Optional libraries: Framer Motion, React Hook Form (+ Zod, optional @hookform/resolvers), React Router, Redux Toolkit or Zustand, Axios, react-i18next (+ i18next, browser language detector)
  • Git: optional repository initialization
  • Config reuse: home-directory JSON cache for faster repeat scaffolds

Quick start

Using npm:

npm create react-nova@latest

Using bun:

bun create react-nova

Using pnpm:

pnpm create react-nova

Using yarn:

yarn create react-nova

If installed globally:

create-react-nova

Every CLI option (prompts)

These are all choices the CLI collects (order matches a fresh run, not “reuse previous config”).

| Step | Question / behavior | Options or notes | | ---- | ------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | 1 | Project name | Free text; validated non-empty | | 2 | Existing non-empty folder | Delete all files and continue · Cancel setup | | 3 | Previous config file present | Continue with previous setup · Start fresh (new setup) | | 4 | Package manager | npm · yarn · pnpm · bun | | 5 | Language | TypeScript · JavaScript | | 6 | Default font | System UI · Inter · DM Sans · Outfit · Source Sans 3 · Manrope · Plus Jakarta Sans · Space Grotesk · Nunito · Montserrat · Work Sans · Lexend · Rubik | | 7 | ESLint + Prettier | Yes / No — shared flat config + eslint-config-prettier | | 8 | CSS framework | Tailwind CSS · Bootstrap · None | | 9 | Framer Motion | Yes / No | | 10 | React Hook Form | Yes / No | | 11 | @hookform/resolvers (Zod ↔ RHF) | Yes / No — only if React Hook Form is yes; Zod is installed with RHF | | 12 | react-router | Yes / No | | 13 | State management | None · Redux Toolkit (@reduxjs/toolkit, react-redux) · Zustand | | 14 | axios | Yes / No | | 15 | i18n (react-i18next) | Yes / No — adds i18next, react-i18next, i18next-browser-languagedetector, sample src/locales/en/translation.json, src/i18n.*, wires main + App | | 16 | Initialize git repository | Yes / No | | Post | Start development server? | Yes (<pkg> run dev) · No (prints cd + run dev) |

Defaults on a fresh run (high level): TypeScript unless you pick JS; default font System UI; ESLint + Prettier on; CSS Tailwind; Framer Motion off; React Hook Form off; react-router on; state None; axios on; i18n off; git off; start dev server prompt defaults to Yes.

Saved config path: ~/.create-react-nova-config.json (Windows: under your user profile, same filename).

What gets installed (by choice)

  • Tailwind: tailwindcss, @tailwindcss/vite; replaces vite.config from template; src/index.css from Tailwind template
  • Bootstrap: bootstrap, react-bootstrap; imports bootstrap/dist/css/bootstrap.min.css in main; clears default index.css content
  • None: index.css from minimal template + optional body font rule
  • Framer Motion: framer-motion
  • React Hook Form: react-hook-form, zod; optionally @hookform/resolvers
  • Router: react-router-dom
  • Redux: @reduxjs/toolkit, react-redux
  • Zustand: zustand
  • Axios: axios
  • i18n: i18next, react-i18next, i18next-browser-languagedetector
  • Always ensures react and react-dom are present among additional installs

Cleanup and templates

  • public/ — all contents removed
  • src/assets/ — all contents removed
  • src/App.css — deleted
  • src/App.jsx / App.tsx — replaced from framework-specific templates (App.tailwind, App.bootstrap, or plain App)
  • Tailwind: App + index.css aligned with v4 + optional font @theme block

Vite create commands (per package manager)

Internally the CLI runs the appropriate variant of create Vite with --template react or react-ts (e.g. npm: npm create vite@latest <name> -- --template <template>; yarn pnpm bun each use their documented create/vite invocation).

Documentation links

Tech stack of this CLI

  • Runtime: Node (ES modules)
  • Dependencies: @clack/prompts, chalk, execa

License

MIT


create-react-nova — built by Hadi Baydoun.