VoidLAB
A premium cloud code editor and compiler built for fast iteration, polished UX, and modern developer workflows.
Live Product • Backend API • Repository
VoidLAB is a full-stack cloud IDE experience designed to feel like a polished product rather than a rough demo. It combines a premium onboarding flow, personalized workspace, Monaco-powered editor, multi-file editing, keyboard shortcuts, and online code execution through a hosted runtime provider.
The project is structured as a monorepo and split into:
- a Next.js frontend for the product interface
- an Express API for execution requests
- shared config packages for cleaner project organization
- Live Product: https://void-lab-web.vercel.app/
- Backend API: https://voidlab.onrender.com
- GitHub Repository: https://github.com/liambrooks-lab/VoidLAB
The Vercel link is the main public product URL you can share with users, teammates, recruiters, or clients.
- polished landing and onboarding flow
- profile-based workspace greeting
- responsive interface across desktop and mobile
- theme switching support
- product-grade layout and visual hierarchy
- Monaco-powered code editor
- multi-file project workspace
- file explorer and editor tabs
- export current file
- persistent local workspace state
- built-in user manual inside the editor
Ctrl/Cmd + Enterto run codeCtrl/Cmd + Sto save workspace locallyCtrl/Cmd + Shift + Nto create a new fileEscto close mobile panels
VoidLAB supports many languages and formats for editing, and a broad set of runnable languages through the execution engine.
Runnable language examples:
- JavaScript
- TypeScript
- Python
- Java
- C
- C++
- Go
- Rust
- PHP
- Ruby
- Swift
- Kotlin
- Bash
- Lua
- C#
Editor-oriented formats include:
- HTML
- CSS
- JSON
- Markdown
- YAML
- SQL
- XML
- PowerShell
Runtime availability depends on the hosted execution provider. Some languages may remain editor-only when public cloud execution is not exposed.
- Next.js
- React
- TypeScript
- Tailwind CSS
- Monaco Editor
- Lucide Icons
- Node.js
- Express
- TypeScript
- Axios
- Vercel for frontend hosting
- Render for backend hosting
- Judge0 CE for cloud code execution
- npm workspaces
- Turborepo
- shared TypeScript configs
VoidLAB/
|- apps/
| |- api/
| | |- src/
| | | |- controllers/
| | | |- middleware/
| | | |- models/
| | | |- routes/
| | | `- index.ts
| | |- package.json
| | `- tsconfig.json
| `- web/
| |- public/
| |- src/
| | |- app/
| | |- components/
| | |- context/
| | |- hooks/
| | `- lib/
| |- package.json
| `- tsconfig.json
|- packages/
| |- config/
| `- tsconfig/
|- .github/
|- package.json
|- package-lock.json
|- turbo.json
|- LICENSE
`- README.md
The frontend is responsible for:
- onboarding and user profile capture
- workspace rendering
- theme selection
- file management
- editor interactions
- terminal and output presentation
- API communication with the backend execution service
The backend is responsible for:
- exposing a clean execution endpoint
- forwarding execution requests to the runtime provider
- returning compiler and runtime output to the frontend
- applying basic rate limiting and request control
- User opens VoidLAB
- User enters profile details
- User enters the editor workspace
- Code is written or updated in the Monaco editor
- Frontend sends the execution request to backend
- Backend forwards the request to Judge0 CE
- Output is returned and shown in the terminal panel
- Node.js 18+
- npm 10+
npm installnpm run build -w api
npm run start -w apinpm run dev -w web- Frontend:
http://localhost:3000 - Backend:
http://localhost:5000
Create apps/web/.env.local:
NEXT_PUBLIC_API_URL=http://localhost:5000Create apps/api/.env:
PORT=5000
JUDGE0_API_URL=https://ce.judge0.comnpm run build -w apinpm run build -w web- hosted on Vercel
- root directory:
apps/web
- hosted on Render
- uses the Express API from
apps/api
NEXT_PUBLIC_API_URL=https://voidlab.onrender.com- polished onboarding and workspace personalization
- shareable public product URL
- cloud editor workflow
- hosted code execution pipeline
- responsive design
- project tabs and file explorer
- professional UI suitable for demos and portfolio use
- clear repo structure for scaling the product further
VoidLAB is built as a strong production-style MVP with:
- multi-language editing
- broad execution support
- a modern UI
- monorepo architecture
- live deployment links
Possible next upgrades:
- authentication with database-backed sessions
- GitHub OAuth and one-click publish
- collaborative editing
- saved projects in database
- team workspaces
- project templates
- AI code assistance
- terminal emulation
- deployment from inside the editor
Rudranarayan Jena
GitHub: @liambrooks-lab
- Project Name: VoidLAB
- Maintainer: Rudranarayan Jena
- GitHub Username:
liambrooks-lab - Repository URL: https://github.com/liambrooks-lab/VoidLAB
- The public product URL is the main link intended for demos and sharing.
- The backend URL is infrastructure-facing and supports execution requests.
- Runtime language support depends on the external execution provider.
- Local development and cloud deployment are both supported.
For project updates, collaboration, or product discussion:
Built by Rudranarayan Jena