All Commands
All Commands
Create Next.js App
Create a new Next.js application with the latest version
npx create-next-app@latest my-app
Next.js Development Server
Start the Next.js development server
npm run dev
Next.js Build
Build the Next.js application for production
npm run build
Create React Native App
Create a new React Native application
npx react-native@latest init MyApp
React Native Development Server
Start the React Native Metro bundler
npx react-native start
React Native Android Build
Build React Native app for Android production
cd android && ./gradlew assembleRelease
Create Flutter App
Create a new Flutter application
flutter create my_app
Flutter Development Server
Run Flutter app in debug mode
flutter run
Flutter Build
Build Flutter app for production
flutter build
Create Vue.js App
Create a new Vue.js application
npm create vue@latest
Vue.js Development Server
Start the Vue.js development server
npm run dev
Vue.js Build
Build the Vue.js application for production
npm run build
Create Angular App
Create a new Angular application
ng new my-app
Angular Development Server
Start the Angular development server
ng serve
Angular Build
Build the Angular application for production
ng build --prod
Create Svelte App
Create a new Svelte application
npm create svelte@latest my-app
Svelte Development Server
Start the Svelte development server
npm run dev
Svelte Build
Build the Svelte application for production
npm run build
Create Remix App
Create a new Remix application
npx create-remix@latest
Remix Development Server
Start the Remix development server
npm run dev
Remix Build
Build the Remix application for production
npm run build
Create Nuxt App
Create a new Nuxt.js application
npx nuxi@latest init my-app
Nuxt Development Server
Start the Nuxt.js development server
npm run dev
Nuxt Build
Build the Nuxt.js application for production
npm run build
Create Astro App
Create a new Astro application
npm create astro@latest
Astro Development Server
Start the Astro development server
npm run dev
Astro Build
Build the Astro application for production
npm run build
Clone Repository
Clone a GitHub repository to your local machine
git clone https://github.com/username/repository.git
Initialize Repository
Initialize a new Git repository in the current directory
git init
Stage Changes
Stage all changes in the current directory for commit
git add .
Commit Changes
Commit staged changes with a descriptive message
git commit -m "Your commit message"
Push Changes
Push committed changes to the remote repository
git push origin main
Pull Image
Pull a Docker image from a registry
docker pull image-name
Build Image
Build a Docker image from a Dockerfile
docker build -t image-name .
Run Container
Run a Docker container in detached mode with port mapping
docker run -d -p 8080:80 image-name
Initialize Project
Initialize a new Node.js project with default settings
npm init -y
Install Dependencies
Install all dependencies listed in package.json
npm install
Start Application
Start a Node.js application
node app.js