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-just-dom

v1.3.1

Published

Scaffold a Vite app with just-dom, jd.config, and your choice of official plugins

Readme

create-just-dom

Scaffold a Vite app with just-dom, a ready-made jd.config (jd.config.ts or jd.config.js), and your choice of official plugins and CSS stack (plain CSS, Tailwind CSS v4, or Tailwind + DaisyUI).

Full documentation: App setup → Start a new project and Installation.

Usage

npm create just-dom@latest
npm create just-dom@latest my-app
npm create just-dom@latest .   # scaffold into the current directory (must be empty)

Interactive (default in a TTY): three separate keyboard-driven screens, in order: Language (TypeScript vs JavaScript) → CSS framework (none, Tailwind v4, or Tailwind + DaisyUI) → Plugins (multi-select, all optional). Use ↑/↓ to move, Space to toggle or pick, Enter to confirm.

Non-interactive (CI or scripts): use --yes or pass explicit flags:

| Flag | Effect | |------|--------| | --ts, --typescript | Vite vanilla-ts | | --js, --javascript | Vite vanilla (.js files) | | --plugins=<list> | Comma-separated plugins: router, signals, lucide | | --no-plugins | Install just-dom only (no @just-dom/* plugins) | | --css=<option> | none | tailwind | tailwind-daisyui | | --no-css | Same as --css=none | | --pnpm | Use pnpm add in the new folder | | -y, --yes | Skip prompts (defaults: TypeScript, no plugins, no CSS framework) | | -h, --help | Help |

npm create just-dom@latest my-app -- --yes
npm create just-dom@latest my-app -- --js --no-plugins --no-css
npm create just-dom@latest my-app -- --ts --plugins=router,lucide --css=tailwind --pnpm

Then:

cd my-app
npm install   # if Vite did not install deps yet
npm run dev

With --css=tailwind or tailwind-daisyui, the CLI adds tailwindcss, @tailwindcss/vite, wires vite.config, and generates a starter style.css using Tailwind v4 (@import "tailwindcss"). DaisyUI adds the @plugin "daisyui/index.js" line.

If stdin is not a TTY and you omit flags, defaults are TypeScript, no plugins, and no CSS framework.

Monorepo development

From the just-dom repository root:

pnpm create:app ../path/to/my-app

From any directory (including an empty folder under examples/…), pnpm create:app uses your current shell directory for . and for relative names—thanks to INIT_CWD—not only the repo root.

License

Same as the parent monorepo.