create-graspr-static
v0.1.0
Published
Create a new Graspr static site (Vite + Tailwind + custom HTML components)
Maintainers
Readme
create-graspr-static

Scaffold a new Graspr static site (Vite + Tailwind + custom HTML components).
Usage
npm create graspr-static my-siteThis will:
- Clone the Graspr static skeleton
- Remove git history (fresh start)
- 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.
Requirements
- Node.js 18+
- Git
Full app?
For a full-stack app with HTMX, auth, modals, and toasts, use create-graspr-app instead:
npm create graspr-app my-appPair with Handlr for the backend:
composer create-project phillipsharring/handlr-app my-app-backend