Next.js Commands Cheat Sheet - 2024.
- Posted on July 21, 2024
- Next.js
- By MmantraTech
- 552 Views
Cheat sheet for common Next.js commands:
Project Setup
-
Create a New Project:
npx create-next-app@latest my-next-appyarn create next-app my-next-apppnpm create next-app my-next-app
Development
-
Run Development Server:
npm run devyarn devpnpm dev
Build and Production
-
Build for Production:
npm run buildyarn buildpnpm build
-
Start Production Server:
npm run startyarn startpnpm start
-
Export Static Pages:
npm run exportyarn exportpnpm export
Write a Response