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

nuxtkit-pro

v1.1.2

Published

A polished Nuxt 4 scaffolding CLI with starter templates and optional feature packs.

Readme

NuxtKit Pro

NuxtKit Pro is a Nuxt 4 scaffolding CLI for developers who want a solid starting point without spending the first hour wiring the same pieces together again.

It generates clean Nuxt projects from curated templates, lets you layer in common feature packs, and keeps the command-line experience fast, predictable, and easy to automate.

Features

  • Nuxt 4 starter generation with multiple templates
  • Optional feature packs for auth, API routes, Tailwind CSS, and linting
  • Interactive mode for guided setup
  • Non-interactive mode for automation and CI
  • Safe template fallback and defensive file handling
  • Dependency installation and git initialization built in

Installation

Run it directly with npx:

npx nuxtkit-pro@latest my-app

Or install it globally:

npm install -g nuxtkit-pro
nuxtkit-pro my-app

Usage

nuxtkit-pro <project-name> [options]

Quick examples

Create a standard Nuxt app:

nuxtkit-pro my-app

Scaffold a dashboard with auth and API support:

nuxtkit-pro admin-panel --template=dashboard --auth --api

Create a landing page starter without installing dependencies:

nuxtkit-pro marketing-site --template=landing --tailwind --no-install

Run in non-interactive mode:

nuxtkit-pro saas-starter \
  --template=saas \
  --auth \
  --api \
  --tailwind \
  --lint \
  --package-manager=pnpm \
  --no-git \
  --yes

Templates

default

The general-purpose starting point. Good for most apps when you want a clean Nuxt base and no opinionated layout.

dashboard

Focused on internal tools, admin panels, and products that need a structured application shell from day one.

landing

Built for marketing pages, launches, and brand-forward sites that need a lightweight, content-driven starting point.

saas

A SaaS-oriented starter aimed at product marketing pages and product-first websites.

Feature Packs

--auth

Adds a basic authentication flow with composables, middleware, login handling, and starter account pages.

--api

Adds a simple Nitro API example, client-side utilities, and a demo page for data fetching patterns.

--tailwind

Adds Tailwind CSS configuration, PostCSS setup, and a CSS entry file wired into Nuxt.

--lint

Adds ESLint, Prettier, Husky, and lint-staged so the project starts with a maintainable code quality baseline.

CLI Options

| Option | Description | | --- | --- | | --template <name> | Choose a template: default, dashboard, landing, saas | | --auth | Include the authentication feature pack | | --api | Include the API feature pack | | --tailwind | Include the Tailwind CSS feature pack | | --lint | Include the linting feature pack | | --package-manager <name> | Choose npm, pnpm, or yarn | | --yes | Skip prompts and use defaults for any missing values | | --no-install | Do not run dependency installation after scaffolding | | --no-git | Do not initialize a git repository | | -h, --help | Show the help output |

Example Workflow

nuxtkit-pro test-app \
  --template=dashboard \
  --auth \
  --api \
  --tailwind \
  --lint \
  --no-install \
  --no-git \
  --yes

Then:

cd test-app
npm install
npm run dev

Contributing

Contributions are welcome. If you want to improve templates, add a new feature pack, or tighten the CLI experience, open an issue or submit a pull request.

If you plan to make a larger change, it helps to start with a short discussion so the direction stays aligned with the project.

License

MIT