Get up and running with start-it-cli in 2 minutes!
npm install -g start-it-clistart-it-cliThen answer the prompts:
- Select Framework - Choose from Go, Flutter, React Native, Spring Boot, Node.js, or Python
- Project Name - Enter your project name (e.g.,
my-app) - Select Template - Choose a template variant for your framework
That's it! Your project is ready.
Navigate to your project and follow the README:
cd my-app
cat README.mdcd my-go-app
go mod download
go run main.gocd my-flutter-app
flutter pub get
flutter runcd my-rn-app
npm install
npm startcd my-spring-app
mvn clean package
mvn spring-boot:runcd my-node-app
npm install
npm run devcd my-python-app
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python main.py| Framework | Templates |
|---|---|
| Go | Basic CLI, Web API, Microservice |
| Flutter | Mobile App, Web App, Desktop App |
| React Native | Expo, Bare React Native |
| Spring Boot | REST API, Web App, Microservice |
| Node.js | Express API, Next.js, TypeScript |
| Python | Django, Flask, FastAPI |
- Installation Issues? → See INSTALLATION.md
- More Examples? → See EXAMPLES.md
- Want to Contribute? → See CONTRIBUTING.md
- Full Details? → See README.md
- Project names can only contain letters, numbers, hyphens, and underscores
- Each template includes a README with framework-specific instructions
- All projects are ready to build and deploy
- Templates include example code and best practices
Happy coding!