Web Application Development with Bolt.new
Bolt.new is an AI development environment from StackBlitz that generates complete web applications (React, Next.js, Svelte, Node.js) directly in the browser. The model understands the task, writes code, installs dependencies, and launches the dev server without local setup.
What Bolt.new Can Do
- Generates complete projects from text description: "SaaS dashboard with authentication, user table, and charts"
- Iteratively refines: "add date filtering", "connect to Supabase"
- Installs npm packages, configures Tailwind, Vite, TypeScript
- Deploys to Netlify in one click from the interface
- Exports project as ZIP for further development
Usage Practices
Effective prompts:
Create a SaaS task management application:
- Stack: React 18 + TypeScript + Tailwind CSS
- Authentication via email/password (localStorage for prototype)
- Kanban board with drag-and-drop (DnD Kit)
- CRUD operations for tasks
- Filters by status and assignee
Iterative improvement:
// Next prompt after base generation:
Add:
1. Dark theme via CSS variables
2. Notification when dragging tasks
3. Task counter in each column
Limitations
- Not suitable for production systems with business logic — requires review and refactoring
- Complex backend dependencies (queues, microservices) require manual implementation
- Context window limits project size — large applications need to be split
Bolt.new is optimal for MVPs, prototypes completed in 1–4 hours, demos for stakeholders, and stack learning. For production — a starting point that developers refine.







