create-hyper-dart
v1.0.6
Published
A test template for scaffolding projects
Readme
create-hyper-dart
A lightweight scaffolding CLI to quickly set up a standalone hyperDart component!
✨ Features
- 📦 React Framework
- 🔤 Supports JavaScript and TypeScript
- ⚡ Choose between Vite or Rollup setups
- ♻️ Built-in HMR (Hot Module Replacement) for Vite
- 🧩 Simple CLI with interactive prompts
- 🧼 Initializes a clean project structure
- 🎨 Customizable templates
🚀 Usage
You can use this tool to quickly setup your React sandbox project.
Create a new project
npm create hyper-dart@latest <component-name>📦 Available Templates
| Template Name | Description |
| ------------- | ------------------------------ |
| react-vite | React with JavaScript + Vite |
| react-js | React with JavaScript + Rollup |
| react-ts | React with TypeScript + Rollup |
🧪 After Scaffolding the Project
You can run the following commands depending on the template you selected:
For react-vite:
cd <component-name>
npm install
npm startFor react-js or react-ts (Rollup):
cd <component-name>
npm install
npm start
cd sandbox
npm install
npm startHappy coding! 🚀
