9:41
FORGE
v2.4
Dev Platform
🔔
⚙️
// workspace · active
Build.
Ship.
Scale.
Full-stack dev platform. Web + Mobile in one flow.
New Project
Open IDE
const app = forge()
app.deploy('prod')
// ✓ Live in 2.3s
📦
12
Projects
🚀
847
Deploys
99.9%
Uptime
Active Projects
🌐
ShopFlow Web
React · Node · Postgres
● LIVE
Sprint 4 · 78%
v2.1.4
⬆ 12 commits
3 devs
CI ✓
📱
Nomad Mobile
React Native · GraphQL
⚙ BUILD
Sprint 2 · 45%
v0.9.1
⬆ 5 commits
2 devs
Tests 92%
Recent Activity
ShopFlow deployed to production
2 min ago · CI passed
alex_dev pushed 3 commits to main
14 min ago · feat: auth flow
Nomad build warning — bundle size
1h ago · 2.4MB > 2MB limit
AI Assist generated API endpoints
2h ago · 8 routes scaffolded
Projects
12 active · 3 archived
+
All (12)
Web (7)
Mobile (3)
API (2)
🌐
ShopFlow Web
React · Node.js · PostgreSQL
● LIVE
3 devs online
Next: API v3
⚡ 98ms
📱
Nomad Mobile
React Native · GraphQL
⚙ BUILD
2 devs
iOS + Android
Beta soon
🔌
DataBridge API
Go · Redis · Kafka
● LIVE
1.2M req/day
p99: 4ms
v4.1.0
Live Deploy Log
forge-cli · shopflow-web
● deploying
forge deploy --env production
Running pre-deploy checks...
Tests passed (248/248)
Build optimized (1.8MB)
Uploading to edge (23/48)...
Bundle size near limit
ETA ~14s
IDE
ShopFlow Web · src/api/auth.ts
auth.ts
user.model.ts
middleware.ts
routes.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
import { jwt, bcrypt } from 'forge/auth'
import { User } from './user.model'
export async function loginUser(
email: string,
password: string
) {
const user = await User.findOne({ email })
if (!user) throw new Error('Not found')
const ok = await bcrypt.compare(
password, user.hash)
return jwt.sign({ id: user.id })
}
🤖
Forge AI
GPT-4o
● online
I see you're building an auth function. Want me to add rate limiting and refresh token support?
Yes, add rate limiting with Redis
Here's the rate-limited version:
const limiter = rateLimit({
windowMs: 15 * 60000,
max: 5, store: RedisStore()
})
Deploy
3 environments · All healthy
🔄
CI/CD Pipeline
ShopFlow Web · main → production
Test
Build
Deploy
Verify
248 tests passed · 1.2s
Build complete · 12.4s
Edge deploy 23/48 nodes
Environments
🌍
Production
shopflow.app → edge
healthy
99.9%
Uptime
98ms
p50
48
Nodes
Rollback v2.1.3
🧪
Staging
staging.shopflow.app
deploying
97.2%
Uptime
124ms
p50
3
Nodes
Redeploy
Integrations
GitHub
Auto-deploy on push to main
connected
Slack
Deploy & error alerts
active
Datadog
APM & log monitoring
active
Vault
Secrets management
disabled