@phillipsharring/create-handlr-static
v0.10.2
Published
Create a new Handlr static site (Vite + Tailwind + custom HTML components)
Maintainers
Readme
@phillipsharring/create-handlr-static

Scaffold a new Handlr static site (Vite + Tailwind + custom HTML components).
Usage
npm create @phillipsharring/handlr-static my-siteThis will:
- Copy the bundled static skeleton into
my-site/ - Install npm dependencies
Then:
cd my-site
npm run devWhat you get
A Vite-powered static site with:
- Tailwind CSS v4 for styling
- Custom HTML components - author pages with
<callout>,<heading>,<card>, whatever you define - Layout system with
[[app]]slot and<page-head>injection - File-based page routing (
content/pages/about.html→/about) - Hot reload in dev, page compilation for production
No HTMX, no Handlebars runtime, no client-side state. Just layouts, components, pages, and Tailwind. The build is powered by @phillipsharring/handlr-build.
Requirements
- Node.js 18+
Full app?
For a full-stack app with HTMX, auth, modals, and toasts, scaffold the Handlr app skeleton instead:
composer create-project phillipsharring/handlr-app my-appThat pulls in Handlr Frontend (runtime) and Handlr Backend (PHP) together.
