Choose the right command for the current phase of extension development, from first scaffold to production validation.
| Goal | Command | Example |
|---|---|---|
| Scaffold a new project | create |
npx extension@latest create my-extension --template=new-react |
| Develop with watch mode | dev |
extension dev --browser=firefox |
| Build production artifacts | build |
extension build --browser=chrome,firefox --zip |
| Build and launch production output | start |
extension start --browser=edge |
| Launch existing build output only | preview |
extension preview --browser=chrome |
create to bootstrap.dev for iterative coding and reload cycles.build for release artifacts.preview or start for production-like validation.