Runtime online
AI Code Editor.Run Anywhere.Ship Faster.
CloudForge is a browser-based code workspace for building, running, and refining projects with live preview, WebContainer execution, AI assistance, and cloud persistence.
WebContainer
Run npm scripts in-browser
Live Preview
See changes as you save
AI Assistant
Review, fix, and refactor
Cloud Sync
Projects stay available
app.cloudforge.dev/workspace
App.tsx
1import { useState } from 'react';
2import { Button } from './Button';
3
4export default function App() {
5 const [count, setCount] = useState(0);
6
7 return (
8 <main className="forge-app">
9 <h1>CloudForge</h1>
10 <Button onClick={() => setCount(count + 1)}>
11 Count: {count}
12 </Button>
13 </main>
14 );
15}
Terminal
localhost:5173
$ npm run dev
VITE v5.2.0 ready in 302 ms
Local: http://localhost:5173/
Built for serious browser development.
Start from a framework template, run it in-browser, inspect the terminal, preview changes, and ask the AI assistant without leaving the workspace.
templates ready for runtime
React
Component workspace
Next.js
Full-stack starter
Vue
Reactive frontend
Express
API runtime
Hono
Edge-ready API
Angular
Structured app shell