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-md-computer

v0.3.1

Published

Scaffold a Vite + React + Tailwind + shadcn project pre-wired for md-computer

Downloads

665

Readme

create-md-computer

Scaffold a Vite + React + Tailwind v4 + shadcn/ui project pre-wired for md-computer.

npm create md-computer@latest my-app
# or: pnpm create md-computer my-app
# or: bun create md-computer my-app
# or: yarn create md-computer my-app

You'll be asked for a project name (if not passed) and a package manager. The scaffolder copies the template, installs deps, and inits a git repo.

cd my-app
pnpm dev

The first dev run installs whatever shadcn primitives the demo .md page references (Card, Button, Input, etc.) into src/components/ui/. After that, edit src/pages/settings/page.md and the page hot-reloads.

What's in the box

  • Vite 7 + React 19 + TypeScript 5 with strict config
  • Tailwind v4 via @tailwindcss/vite (no PostCSS config needed)
  • shadcn/ui initialized (components.json, src/lib/utils.ts, CSS variables) — primitives JIT-installed by md-computer
  • md-computer + its Vite plugin wired into vite.config.ts
  • An @/* path alias (TS + Vite both)
  • An example settings page in src/pages/settings/page.md with working actions

Flags

create-md-computer my-app --pm pnpm                  # skip the package-manager prompt
create-md-computer my-app --no-install               # skip dep install
create-md-computer my-app --no-git                   # skip git init + initial commit
create-md-computer my-app --preset <id>              # apply a shadcn theme preset

Theming

The default scaffold ships with shadcn's neutral / new-york defaults. To use a custom theme:

  1. Pick colors / radius / font on https://ui.shadcn.com
  2. Copy the preset ID out of the install command shadcn shows you (the --preset value)
  3. Pass it to the scaffolder:
npm create md-computer@latest my-app -- --preset bdzH1zUBM

After your base scaffold installs, npx shadcn@latest init --preset <id> --template vite --yes --force runs in the target dir. shadcn overwrites components.json, src/index.css, and src/lib/utils.ts with the preset's theme. You can re-run that command later if you want to switch presets.

License

MIT