Interactive CLI tool for creating new Ripple applications. Alias for the `@ripple-ts/cli` package.
npm install create-rippleInteractive CLI tool for creating new Ripple applications. Alias for the @ripple-ts/cli package.
``bash`
npx create-rippleor
npm create rippleor
yarn create rippleor
pnpm create ripple
- project-name: Optional. Name of the project to create-p, --package-manager
- : Package manager to use - npm, yarn, pnpm (default: npm)--template
- : Choose a predefined template (default and currently only option: basic)--yes
- or -y: Skip all prompts and use defaults--no-git
- : Skip initializing a Git repository
Examples:
``bash
npm create ripple my-appor
npx create-ripple my-app
`bash```
npm create ripple my-app --yes --no-gitor
npx create ripple my-app --yes --no-git
- 🎯 Interactive prompts - Guides you through project setup
- 📁 Template selection - Choose from predefined templates
- ✅ Project validation - Ensures valid project names
- 🎨 Beautiful CLI - Colored output with progress indicators
- ⚡ Fast setup - Quickly scaffold new Ripple projects
A minimal Ripple application with:
- Vite for development and building
- TypeScript support
- Prettier for code formatting
- Basic project structure
- Node.js 20.0.0 or higher
MIT