create-constela
v0.2.3
Published
Create Constela applications with one command
Maintainers
Readme
create-constela
Create Constela applications with one command.
Usage
# npm
npm create constela@latest my-app
# yarn
yarn create constela my-app
# pnpm
pnpm create constela my-appOr with npx:
npx create-constela my-appOptions
| Option | Description |
|--------|-------------|
| -t, --template <name> | Use a specific template (default: default) |
| -e, --example <name> | Use an example project |
| --no-git | Skip git initialization |
| --no-install | Skip package installation |
| --package-manager <pm> | Package manager to use (npm, yarn, pnpm) |
| --list | List available templates and examples |
Templates
default- Minimal starter with a single route
Examples
counter- Simple counter with state and actionstodo-list- Todo app with list operationsfetch-list- Data fetching example
Interactive Mode
Running without arguments starts interactive mode:
npx create-constelaYou'll be prompted for:
- Project name
- Template or example selection
- Package manager preference
Quick Start
# Create a new project
npx create-constela my-app --install
# Navigate and start dev server
cd my-app
npm run devOpen http://localhost:3000 to see your app.
License
MIT
