PocketForge
A no-code shop where a small business or creator describes a tiny interactive tool in plain English and gets back a double-clickable, no-install native app to email to customers — no app store, no Java, no IT department.
small-business owners and independent creators who want to hand a customer a working utility without building or distributing software
- Plain-English tool builder: 'a wedding seating chart picker with 12 tables' or 'a 1RM calculator for my gym members'
- Generates a self-contained native binary (≈180KB) that opens with a double-click — no installer, no admin rights, no runtime download
- Branded splash screen and your logo so the tool feels like a product, not a web link
- Offline-by-default: tools work on a plane, in a basement venue, or on a customer's locked-down laptop
Vercel just open-sourced a TypeScript-to-native compiler that produces 180KB standalone binaries with ~2ms startup, collapsing the cost of shipping 'real software' to anyone who can describe what they want.
No-code app builders are an established market ($0–$100/mo tiers, with $40K–$400K custom dev as the alternative), but the specific 'describe in English → emailable native exe' use case is narrow — most SMB utility needs are served by web apps or existing no-code tools, and email-attached executables increasingly trigger security warnings from Gmail/Outlook/AV.No-Code App Builders for Small Businesses: What They Build, What They Cost (2026) ↗7 Best No-Code App Builders for Small Business - AppInstitute ↗
No direct competitor found in the 'plain-English prompt → downloadable native binary emailed to a customer' slot; adjacent players (Glide, Adalo, Bubble, Power Apps, WeWeb) all output web/mobile apps, not distributable native executables. The niche is genuinely open but also genuinely small.11 Best No-Code App Builders in 2026 (Ranked & Compared) ↗No-Code App Builder | Microsoft Power Apps ↗
Adjacent no-code tools charge $0–$100/mo and SMBs do pay for them, but PocketForge's value prop is occasional one-off utilities — low frequency kills LTV. A small business needing a custom utility would more often pay a Fiverr dev $50–$200 once than subscribe. Recurring revenue is hard to justify beyond hobbyist/creator use.No-Code App Builders for Small Businesses: What They Build, What They Cost (2026) ↗
Scriptc is v0.0.17, 439 stars, 5 contributors, Apache-2.0, with macOS arm64 as the primary platform and an expert reviewer calling the architecture 'idiotic'; the whole product thesis collapses if the compiler doesn't mature. On top of that, OS-level trust for casually-distributed executables (Gatekeeper, SmartScreen, mail attachment scanning) is getting stricter, not looser, eroding the 'just email a .exe' UX over time.scriptc: Vercel's Zero-Runtime TypeScript Compiler - explainx.ai ↗GitHub - vercel-labs/scriptc: TypeScript-to-Native Compiler ↗
Scriptc is real and open-source, but per its own docs most real TypeScript projects hit the dynamic fallback (embed ~620KB QuickJS), cross-platform builds need separate lanes, and static coverage is limited to dependency-light code. Wrapping an LLM prompt around this still requires safe code generation, sandboxed build infra per platform, binary signing for OS trust, and handling of the SCxxxx error codes — non-trivial.scriptc: Vercel's Zero-Runtime TypeScript Compiler - explainx.ai ↗scriptc | TypeScript-to-Native Compiler ↗