All Commands

Create Next.js App

Next.js

Create a new Next.js application with the latest version

npx create-next-app@latest my-app

Next.js Development Server

Next.js

Start the Next.js development server

npm run dev

Next.js Build

Next.js

Build the Next.js application for production

npm run build

Create React Native App

React Native

Create a new React Native application

npx react-native@latest init MyApp

React Native Development Server

React Native

Start the React Native Metro bundler

npx react-native start

React Native Android Build

React Native

Build React Native app for Android production

cd android && ./gradlew assembleRelease

Create Flutter App

Flutter

Create a new Flutter application

flutter create my_app

Flutter Development Server

Flutter

Run Flutter app in debug mode

flutter run

Flutter Build

Flutter

Build Flutter app for production

flutter build

Create Vue.js App

Vue.js

Create a new Vue.js application

npm create vue@latest

Vue.js Development Server

Vue.js

Start the Vue.js development server

npm run dev

Vue.js Build

Vue.js

Build the Vue.js application for production

npm run build

Create Angular App

Angular

Create a new Angular application

ng new my-app

Angular Development Server

Angular

Start the Angular development server

ng serve

Angular Build

Angular

Build the Angular application for production

ng build --prod

Create Svelte App

Svelte

Create a new Svelte application

npm create svelte@latest my-app

Svelte Development Server

Svelte

Start the Svelte development server

npm run dev

Svelte Build

Svelte

Build the Svelte application for production

npm run build

Create Remix App

Remix

Create a new Remix application

npx create-remix@latest

Remix Development Server

Remix

Start the Remix development server

npm run dev

Remix Build

Remix

Build the Remix application for production

npm run build

Create Nuxt App

Nuxt.js

Create a new Nuxt.js application

npx nuxi@latest init my-app

Nuxt Development Server

Nuxt.js

Start the Nuxt.js development server

npm run dev

Nuxt Build

Nuxt.js

Build the Nuxt.js application for production

npm run build

Create Astro App

Astro

Create a new Astro application

npm create astro@latest

Astro Development Server

Astro

Start the Astro development server

npm run dev

Astro Build

Astro

Build the Astro application for production

npm run build

Clone Repository

GitHub

Clone a GitHub repository to your local machine

git clone https://github.com/username/repository.git

Initialize Repository

GitHub

Initialize a new Git repository in the current directory

git init

Stage Changes

GitHub

Stage all changes in the current directory for commit

git add .

Commit Changes

GitHub

Commit staged changes with a descriptive message

git commit -m "Your commit message"

Push Changes

GitHub

Push committed changes to the remote repository

git push origin main

Pull Image

Docker

Pull a Docker image from a registry

docker pull image-name

Build Image

Docker

Build a Docker image from a Dockerfile

docker build -t image-name .

Run Container

Docker

Run a Docker container in detached mode with port mapping

docker run -d -p 8080:80 image-name

Initialize Project

Node.js

Initialize a new Node.js project with default settings

npm init -y

Install Dependencies

Node.js

Install all dependencies listed in package.json

npm install

Start Application

Node.js

Start a Node.js application

node app.js