Package Exports
- create-bunestro
- create-bunestro/dist/cli.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (create-bunestro) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
create-bunestro
A CLI tool to scaffold Astro projects with Tailwind CSS, React, Shadcn UI, and more pre-configured utilities.
Quick Start
bun create bunestro my-appCLI Usage
Interactive Mode
Run without flags for a guided setup:
bun create bunestro my-appThe CLI will ask you:
- Install dependencies? (yes/no)
- Initialize git repository? (yes/no)
- Open in editor? (Cursor / VS Code / Skip)
Quick Setup
# Use defaults (install deps, init git)
bun create bunestro my-app -y
# Open in editor after creation
bun create bunestro my-app --cursor
bun create bunestro my-app --vscode
# Skip steps
bun create bunestro my-app --no-install
bun create bunestro my-app --no-git
# Combine options
bun create bunestro my-app -y --cursorAvailable Flags
| Flag | Description |
|---|---|
-y |
Skip all prompts and use defaults (install deps, init git) |
--install / --no-install |
Install or skip installing dependencies |
--git / --no-git |
Initialize or skip git repository |
--cursor |
Open project in Cursor after creation |
--vscode |
Open project in VS Code after creation |
-h, --help |
Show help message with examples |
-v, --version |
Show version number |
CLI Features
- 🎨 Beautiful UI - Colored output with spinners and progress indicators
- 🚀 Smart detection - Auto-detects your package manager (bun, npm, pnpm, yarn)
- 💬 Interactive prompts - Guided setup with helpful questions
- ⚡ Fast mode - Use
-yflag to skip all prompts - 🛡️ Graceful error handling - Helpful error messages and recovery options
- 🌐 Cross-platform - Works on Windows, macOS, and Linux
- 🎯 Editor integration - Auto-open in Cursor or VS Code
- 📦 Flexible - Control every aspect with CLI flags
Troubleshooting
Network Issues
# Create without installing dependencies
bun create bunestro my-app --no-install
# Then install manually later
cd my-app
bun installGit Issues
# Configure git if not already done
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
# Or skip git initialization
bun create bunestro my-app --no-gitEditor Not Opening
Make sure the CLI is installed:
- VS Code: Install "code" command via Command Palette → "Shell Command: Install 'code' command in PATH"
- Cursor: Install "cursor" command via Settings → Install CLI
What's Included
The template comes with:
- Astro 5 with React integration
- Tailwind CSS + Shadcn UI components
- Tailwind Motion for smooth animations
- Theme support (dark/light mode)
- Custom utilities - QR code gen, string shortener, image optimization, etc.
- SEO optimized with meta components
- Prettier configured with Tailwind plugin
For full template documentation, visit: bunestro.ardastroid.com
Socials
- Website: ardastroid.com
- Email: hello@ardastroid.com
- GitHub: @ardzero
License
MIT License
Copyright (c) 2026 Ard Astroid / Farhan Ashhab Nur
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
