A full IDE in your browser. No install. No server. Just code.
→ Try it live · Report a bug · Request a feature
If Forge is useful to you, a ⭐ helps others find it — thank you!
Forge is a browser-based development environment powered by WebContainers.
It runs a real Node.js runtime directly inside your browser tab, allowing you to create, edit, install dependencies, and run projects entirely client-side.
There’s no backend server, remote VM, or Docker container involved.
Pick a framework, start coding instantly, and see live updates with hot reload - all from a single URL.
Forge runs entirely inside the browser using WebContainers.
Everything executes client-side — no server orchestration layer exists.
| Layer | Library |
|---|---|
| Framework | React 19 + TypeScript |
| Editor | Monaco Editor |
| Terminal | xterm.js |
| Runtime | WebContainers API |
| Build | Vite 7 |
| Styling | TailwindCSS 4 |
| State | Jotai |
| Routing | React Router v7 |
| Animations | Framer Motion |
| Framework | Status |
|---|---|
| React + Vite | ✅ |
| Vue + Vite | ✅ |
| Svelte + Vite | ✅ |
| Node.js | ✅ |
| Next.js | 🔜 Coming soon |
| Remix | 🔜 Coming soon |
src/
├── components/
│ ├── CodeEditor.tsx # Monaco editor wrapper
│ ├── Terminal.tsx # xterm.js terminal
│ ├── Sidebar.tsx # File explorer
│ ├── PreviewFrame.tsx # Live preview iframe
│ ├── IdeHeader.tsx
│ └── IdeFooter.tsx
├── lib/
│ ├── webContainerRuntime.ts # WebContainer setup & lifecycle
│ ├── webContainerManager.ts # Instance management
│ ├── projectFiles.ts # Framework templates
│ ├── atoms.ts # Jotai state
│ └── utils.ts
└── pages/
├── LandingPage.tsx
└── IDEpage.tsx
git clone https://github.com/vivek1504/forge.git
cd forge
npm install
npm run dev
Open http://localhost:5173.
Note: WebContainers require
Cross-Origin-Isolationheaders (COOP+COEP). The dev server sets these automatically via the Vite config.
Because Forge runs entirely in the browser through WebContainers:
PRs are welcome — especially for new framework templates and bug fixes.
src/lib/projectFiles.ts is where templates livenpm run dev and verify HMR, terminal, and file explorer work end-to-end in Chrome (WebContainers have best support there)If you're unsure whether something is worth building, open an issue first and let's talk.
MIT — do whatever you want with it.