Title
The core idea is simple. You wire blocks together: HTTP routes, tables, auth, queues, cron jobs, multi-step pipelines. That graph becomes an intermediate representation, and the compiler lowers it into a conventional Node project. You get typed Express handlers, Drizzle schema and migrations, Zod validators generated from your table definitions, and postgres as the driver. Nothing depends on Wyro at runtime. The graph isn't shipped and interpreted somewhere — it's compiled away entirely.
Here's the test the author holds the tool to: the exported package.json lists express, drizzle-orm, postgres, zod, dotenv, and jsonwebtoken. Nothing else. No Wyro package hiding in there. You can delete your account and the app keeps running. That's the kind of lock-in-free promise that actually holds up when you inspect the artifact.
Databases follow the same philosophy. You connect your own Supabase instance, and provisioning happens inside your organization, on your bill, through Supabase's Management API. Wyro holds the canvas, not your infrastructure. That distinction matters if you've ever been burned by a platform that quietly owns your data layer.
Honest state of things: this is early and solo-built. The generated code is the part the author is most confident about — and the part they most want torn apart. The rough edges are in the surrounding product, not the compiler. That's a refreshing thing to hear, because most visual tools are the exact opposite: shiny UI, questionable generated output.
There's a free tier, no credit card required. The useful five-minute exercise is to export a project and actually read the diff-able code before deciding whether you trust it. That's the right way to evaluate something like this — not a demo video, not a marketing page, but a real inspection of what comes out the other side.
I'd especially love to hear from anyone who has migrated off a hosted builder in the past. What broke during your escape? What did you wish the export had included that you had to rebuild by hand? That's exactly the feedback that would push a tool like this in the right direction.