Skip to content

Latest commit

 

History

History
113 lines (81 loc) · 2.1 KB

File metadata and controls

113 lines (81 loc) · 2.1 KB

Quick Start Guide

Get up and running with start-it-cli in 2 minutes!

Installation

npm install -g start-it-cli

Create Your First Project

start-it-cli

Then answer the prompts:

  1. Select Framework - Choose from Go, Flutter, React Native, Spring Boot, Node.js, or Python
  2. Project Name - Enter your project name (e.g., my-app)
  3. Select Template - Choose a template variant for your framework

That's it! Your project is ready.

Next Steps

Navigate to your project and follow the README:

cd my-app
cat README.md

Common Commands by Framework

Go

cd my-go-app
go mod download
go run main.go

Flutter

cd my-flutter-app
flutter pub get
flutter run

React Native (Expo)

cd my-rn-app
npm install
npm start

Spring Boot

cd my-spring-app
mvn clean package
mvn spring-boot:run

Node.js (Express)

cd my-node-app
npm install
npm run dev

Python (FastAPI)

cd my-python-app
python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
python main.py

Frameworks & Templates

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

Need Help?

Tips

  • 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!