create-pulse
v0.0.8
Published
Create a new Pulse app with zero config — includes Tailwind, native ESM, and a beautiful boilerplate.
Maintainers
Readme
create-pulse
⚡️ Zero-config starter CLI for Pulse apps
This CLI scaffolds a new frontend app using Pulse, a lightweight framework built for native ESM + web standards — no bundler or transpiler needed.
📦 Features
- 🧩 Zero-config setup with
npm initandpulsekit - 🎨 TailwindCSS via CDN
- 📁 Multiple starter templates
- 🧠 Written using native ESM modules
- 🚀 Works with
serve,vite preview, etc.
📁 Usage
npx create-pulse my-app
cd my-app
npm run startStarts a local dev server using serve.
🎨 Templates
Use the --template flag to scaffold different app types:
npx create-pulse my-app --template=todosAvailable templates
| Template | Description |
|------------|----------------------------|
| default | Minimal Hello World |
| counter | Classic counter app |
| todos | Clean interactive todo app |
If a template is not found, it falls back to the default.
🔗 Links
- GitHub: stunnerhash/pulse
- NPM: pulsekit
🛠 Local Development
To test the CLI locally during development:
cd packages/cli
npm linkThen anywhere on your system:
create-pulse my-app --template=counter