A CLI tool to quickly create browser automation applications using Browserbase and Stagehand.
- 🚀 Quick Stagehand project scaffolding
- 📦 Multiple pre-built templates from GitHub
- 🎯 Configurable environment (Local or Browserbase cloud)
- ⚡ Zero-config setup with sensible defaults
- 🔧 TypeScript support out of the box
You don't need to install anything! Just run:
npx create-browser-appCreate a new project with default settings:
npx create-browser-app my-project-nameCreate a project with a specific template:
npx create-browser-app my-project-name --template exampleAvailable templates:
basic(default) - Basic Stagehand project setup- Additional templates are automatically fetched from the browserbase/templates repository
Examples include: form-filling, gift-finder, pickleball, license-verification, context, proxies, gemini-cua, and more
After creating your project:
cd my-project-name
npm install
cp .env.example .env
# Add your Browserbase API key to .env
npm start