@holmok/create-bhrr
v0.1.2
Published
Scaffold a new Bun + Hono + React Router 7 SSR site from the bhrr template
Maintainers
Readme
@holmok/create-bhrr
Scaffolds a new bhrr project — Bun + Hono + React Router 7 SSR template.
Usage
bun create @holmok/bhrr my-app
# or
npm create @holmok/bhrr@latest my-app
# or
npx @holmok/create-bhrr my-appEach form creates ./my-app/ from the latest holmok/bhrr GitHub template, runs bun install, and inits a fresh git repo.
npm create @holmok/bhrrandbun create @holmok/bhrrresolve to the@holmok/create-bhrrpackage, per the npm initializer convention. The unscopedbun create bhrr/npm create bhrrwill 404 — the@holmok/scope is required.
cd my-app
bun run devHow it works
This package is a thin wrapper. The CLI delegates to:
bun create holmok/bhrr <target-dir>That keeps the template source-of-truth in holmok/bhrr and avoids shipping a duplicate copy in the npm tarball.
Requirement: Bun >=1.3.0 must be installed and on PATH.
Publishing
npm version patch # or minor/major
npm publishpublishConfig.access is set to public in package.json, so the --access public flag isn't needed (it would otherwise be required for a scoped package's first publish).
The package only ships bin/ and package.json (see the files field). No build step.
License
MIT
