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-zoijs

v0.1.4

Published

Create a new Zoijs app with one command. Plain HTML, CSS, and JavaScript — no build step.

Readme

create-zoijs

Create a new Zoijs app with one command. Plain HTML, CSS, and JavaScript — no build step.

npm license


Usage

npm create zoijs@latest my-app
cd my-app
npm install
npm run dev

npm run dev starts a tiny zero-dependency static server (no serve, no bundler, no build step):

  Zoijs dev server

  - Local:  http://localhost:7310

(It falls back to 7311–7313 if the port is busy.)

Or with npx:

npx create-zoijs my-app

A note on the name. npm maps npm create zoijs to the package create-zoijs (that's npm's convention for npm create <name>), which is why this package is create-zoijs rather than @zoijs/create.

Naming your app

The folder name you pass becomes the project name:

npm create zoijs@latest task-manager

produces a package.json with "name": "task-manager" and an index.html with <title>Task Manager</title>. If you don't pass a name, the CLI asks for one.

Templates

npm create zoijs@latest my-app                       # default: the "app" template
npm create zoijs@latest my-app --template app        # a polished project dashboard
npm create zoijs@latest my-app --template basic      # a basic counter
npm create zoijs@latest my-app --template typescript # type-checked JS, no build step
npm create zoijs@latest my-app --template minimal    # two flat files, CDN, no install
npm create zoijs@latest my-app --template library    # author a Zoijs-based package
  • app (default) — a polished project dashboard (hero, stat cards, filters, empty state) showing html, mount, createState, computed, each, conditional rendering, and parent⇄child component communication.
  • basic — a basic counter, a small local app with a dev server.
  • typescript — the counter as type-checked JavaScript (// @ts-check + strict tsconfig.json + npm run typecheck). Full TS safety, no build step.
  • minimal — the smallest scaffold: two flat files loading @zoijs/core from a CDN. No install, no dev server — run with npx serve . -l 7310.
  • library — a starter for authoring a Zoijs-based package: src + .d.ts, exports/types, a peer dep on @zoijs/core, and a node:test suite.

What it does

  • Copies a template, fills in the app name, and prints the next three commands.
  • Validates the name (npm-safe) and won't overwrite a non-empty folder.

What it does not do

By design, to keep Zoijs simple: no build system, no bundler, no compiler, no JSX transform, no code generation, no plugin system, no template DSL, and no complex prompts. The generated app is plain files you can read.

You don't need this tool

Zoijs works without the CLI — it's only a convenience. You can create an app by hand with an import map and a <script type="module">, or with npm install @zoijs/core. See the Start guide.

License

MIT © Zoijs contributors