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

v0.3.6

Published

Scaffold a Shibumi Stack project: Bun, Hono, Zod, Drizzle, SQLite, Alpine

Readme

create-shibumi

Scaffold a Shibumi Stack project: simple apps, whole stack, without React, build pipelines, or 600 MB of node_modules. Every generated project keeps its source, tests, and deployment config in your repository. No Shibumi runtime dependency.

bun create shibumi@latest my-app
cd my-app
bun dev

Already have a project? Run it inside that project instead, and it gets deploy tooling rather than a scaffold:

bun create shibumi@latest .

Three starting points

  1. Bun full-stack app: Hono, HTML, CSS, Alpine, Zod, tests, a health endpoint, and SQLite through Drizzle with migrations, persistent data, backup, and restore.
  2. Blog: the shibumistack.dev engine — a Bun + Hono markdown renderer with posts, RSS, sitemap, SEO meta, and llms.txt.
  3. Static site: publish a verified build directory such as ./dist, public, build, or out from any framework.

All three deploy to a Linux VPS or homelab through shibumi-server. Other providers can wait until their generated projects pass the same artifact and deployment tests.

Flags

--template <id>       full-stack, blog, or static
--yes, -y             non-interactive; requires name and --template
--no-git              skip git init
--no-install          skip dependency install
--spa                 adopting only: unknown paths serve index.html
--help, -h            show help
--version             show version

Creation is atomic: the project is built in a temporary sibling directory and renamed into place. Failure or cancellation leaves nothing behind, and an existing destination is never touched. Git init stages and commits nothing; the first commit belongs to you.

Adopting an existing project

bun create shibumi . detects where your build lands (Astro and Vite write dist/, Eleventy _site/, an exported Next.js out/, plain files public/), copies in scripts/ship.ts, adds the ship scripts, installs the one dependency that client needs, and generates a Dockerfile, compose.yaml, and .dockerignore for the static image. Git is never touched, and --no-install skips the install.

Two cases stop the run instead of guessing. Deployment files that already exist are never reinterpreted: a compose.yaml carrying Shibumi's static labels beside somebody else's Dockerfile would deploy the wrong artifact. A package.json with a start script belongs to bun ship:setup, which generates server deployment files. Finish with bun ship:setup.

Guidance for coding agents

Generated projects include a root agents.md. It records route locations, data rules, available checks, and files that need extra care.

Development

bun install
bun test        # CLI tests (parsing, atomicity, signals, E2E)
bun check       # TypeScript
bun sync:ship   # re-vendor the Ship client from its locked immutable snapshot

The vendored Ship client in src/templates/ship.ts is locked byte-for-byte to a published immutable snapshot via scripts/ship.lock.json; tests fail on any drift.

Docs: https://shibumistack.dev/docs