🧩 Drag-and-drop desktop IDE for instantly deploying JS/TS APIs to Cloudflare, AWS, and Vercel — no config, no terminal, just deploy.
A multi-cloud deployment IDE for solo devs, teams, and builders who hate YAML.
- Why Edge Deployer
- Demo
- Features
- Install
- Documentation
- Architecture
- How It Works
- Tech Stack
- Output Example
- Who Is This For
- Used In
- Roadmap
- Contributing
- License
- About the Author
Cloud deployment should feel like clicking “Run,” not configuring IAM.
Edge Deployer removes devops friction and replaces it with velocity:
- ✅ Write JS/TS edge functions
- ✅ Preview instantly in-browser
- ✅ Deploy to Cloudflare, AWS, or Vercel — no CLI, no YAML
- ✅ View logs and test endpoints — all in one UI
Perfect for solo devs, hackathon teams, or internal APIs that need to ship now.
Live-edit → Preview → One-click Deploy
🎯 Tip: A version with mouse cursor and annotations is in progress.
Want to contribute a screencast or Loom walk-through? Open an issue!
- ⚡ Live Monaco Editor – VSCode-like, drag-and-drop, multi-file aware
- 👁️ Secure Preview Iframe – Runs your fetch handler with real console output
- ☁️ One-Click Cloud Deploy – Cloudflare (via Pulumi), AWS Lambda, and Vercel (WIP)
- 🧪 Built-in API Tester – Send POST/GET to deployed endpoint, log responses
- 📦 Pulumi ZIP Export – Download full project with
Pulumi.yaml
,index.ts
,tsconfig.json
- 📜 Deploy History Viewer – Last 5 deploys with timestamp, provider, and URL
- ⚙️ Cloud Config Modal – Store tokens, script names, regions, etc.
# MacOS (universal)
curl -L https://github.com/mansoor-mamnoon/edge-deployer/releases/latest/download/edge-deployer-mac.dmg -o edge-deployer.dmg
Don't see your platform in Releases?
CLI support not planned — this tool is proudly no-terminal™.
Full documentation is coming soon.
In the meantime:
- Use the demo above to explore the UI
- Check the codebase — it’s cleanly modular with deployers per provider
- Devs welcome to contribute
/docs
content!
Electron (Main)
│
├── preload.ts ← Secure bridge to frontend via contextBridge
├── multiCloudDeployer.ts ← Dispatch Cloudflare/AWS/Vercel handlers
├── generatePulumiCloudflare.ts ← Pulumi YAML + TS bundler
│
└── Renderer (React + TS)
├── MonacoEditor.tsx ← VSCode-style rich editor
├── Preview.tsx ← Sandbox iframe + feedback panel
├── DeployLogPanel.tsx ← IPC-connected log streamer
├── TestPanel.tsx ← Interactive API tester
├── DeployHistoryPanel.tsx ← Persistent deploy summary
└── ConfigModal.tsx ← Env var and credential config
# 1. Run locally for dev
git clone https://github.com/mansoor-mamnoon/edge-deployer
cd edge-deployer
npm install
npm run dev
2. Then inside the app:
- 🧠 Paste or write a JavaScript edge handler
- ▶️ Run to preview status (✅ 200 OK, ❌ error, etc.)
- ☁️ Deploy to your selected cloud
- 🔗 Grab the deployed URL
- 🧪 Test it in-app with POST/GET + body
- 📥 Export Pulumi bundle for GitOps or CLI use
// Deployed Worker
addEventListener("fetch", event => {
event.respondWith(handleRequest(event.request));
});
async function handleRequest(request) {
return new Response("Hello from your deployed API!", {
headers: { "Content-Type": "text/plain" },
});
}
# Pulumi.yaml
name: edge-worker
runtime: nodejs
description: Generated with Edge Deployer
Layer | Technology |
---|---|
Desktop Shell | Electron |
Editor | React + TypeScript + Monaco Editor |
Deploy Logic | Pulumi, JSZip, file-saver |
Infra-as-Code | Pulumi (TS-based cloud config) |
Cloud Targets | Cloudflare (✅), AWS Lambda (WIP), Vercel (WIP) |
- 🧑💻 Devs tired of IAM roles and CLI errors
- 🚀 Hackathon participants needing deploy speed
- 🧪 Teams testing internal APIs without overhead
- 🛠 Students learning cloud platforms the visual way
Currently under development. This section will include real usage once version 1.0.0 is released and adopted.
- Vercel REST deployer
- AWS Lambda with ZIP + region config
- Terraform
.tf
generation - Drag-and-drop ZIP upload deploys
- Inline error linter + Monaco warnings
- Pulumi ZIP bundler
- Deploy log + tester panels
- Configurable cloud selection
Want to:
- Add support for Azure, Netlify, or Fly.io?
- Improve onboarding flow or keyboard UX?
- Ship a CLI wrapper despite our “no-terminal” stance?
PRs, issues, and discussions welcome.
Start here 👉 CONTRIBUTING.md
MIT License — do what you want, just don't gate it behind YAML again 😄
Built to replace cloud anxiety with deployment joy.
Mansoor Mamnoon
UC Berkeley • Software Engineer • Systems & Infra Enthusiast
Creator of Edge Deployer, NeuroQuant Agent, and BlackUnicrn tooling.
Passionate about building fast developer tools, reducing friction, and enabling shipping over suffering.