Command-line interface for project management and development workflow. The Qwik CLI provides tools for creating, building, and managing Qwik applications.
The main CLI is accessed through the qwik binary installed with the package.
# Available through package.json bin
npx qwik [command] [options]Common Commands:
# Create new Qwik project
npx create-qwik@latest
# Add integrations
npx qwik add tailwind
npx qwik add react
# Build the application
npx qwik build
# Development server
npx qwik dev
# Preview production build
npx qwik previewUsage Examples:
# Create new app
npx create-qwik@latest my-app
# Add Tailwind CSS
cd my-app
npx qwik add tailwind
# Start development
npx qwik dev --port 3000
# Build for production
npx qwik build
# Preview production build
npx qwik preview