▲
Next.js Commands
Next.js CLI commands for React application development
12 commands found
/ to searchEscto clear
npx create-next-app
Create a new Next.js application
npx create-next-app@latest my-appnext dev
Start Next.js development server
next devnext build
Build Next.js application for production
next buildnext start
Start Next.js production server
next startnext lint
Run ESLint for Next.js
next lintnext telemetry
Manage Next.js telemetry settings
next telemetry statusnext info
Print relevant system and Next.js installation information
next infonext dev --turbo
Start development server with Turbopack
next dev --turbonext build (standalone)
Build Next.js app with standalone output
next buildnext dev --experimental-https
Run development server with HTTPS
next dev --experimental-httpscreate-next-app with TypeScript
Create Next.js app with TypeScript
npx create-next-app@latest --typescriptEnvironment Variables
Using environment variables in Next.js
NEXT_PUBLIC_API_URL=https://api.example.com next dev