Development Server
Start the Next.js development server with Turbopack.
Steps
- •
Check for existing server on port 3000:
bashlsof -i :3000
- •
If port is in use, ask user if they want to kill it
- •
Start dev server:
bashpnpm dev
The server runs at http://localhost:3000
Notes
- •Uses Turbopack for faster hot reloading
- •Run in background if user wants to continue working
- •Ctrl+C or
pkill -f "next dev"to stop