Autocode shut down on April 26, 2024, when its founder closed the company to join OpenAI. It deserved a better ending: it gave hundreds of thousands of people — many of them writing their first lines of JavaScript — instant endpoints, event-driven Discord bots, and zero hosting headaches. If you're still looking for an Autocode alternative, here's how Noria covers that ground, visually.
What made Autocode special
Worth naming, because it's the bar an alternative has to clear:
- Event in, logic runs, something happens — the whole product was built around reacting to events.
- Instant HTTP endpoints — a URL that existed the moment you saved.
- Discord as a first-class citizen — bots without gateway connections or hosting.
- Scheduled scripts — cron without a server.
- Nothing to deploy — you wrote logic; the platform ran it.
How Noria covers the same ground
Noria keeps the event-driven model but replaces the editor: instead of writing an endpoint, you wire triggers to actions on a canvas.
- Instant endpoints → Webhook trigger. Every workflow with a Webhook trigger gets a URL. The trigger exposes the request body, headers, query string, and method as variables, and an optional secret token rejects requests that don't carry it.
- Calling APIs → HTTP Request node. GET/POST/PUT/PATCH/DELETE to any URL, with built-in Bearer, Basic, and API-key auth options, custom headers, and a dot-path extractor to pull one field out of the response.
- Scheduled scripts → Schedule trigger. Standard 5-field cron with a timezone setting and an optional run-once mode. See scheduled automation.
- Discord events → Discord triggers. Messages, member joins, reactions, slash commands, button clicks, form submissions, and more — running on your own bot, with your name and avatar.
- When you really want code → the Code node. A sandboxed Code (JavaScript) node for the logic that's genuinely easier to type than to wire: reshaping a payload, custom math, string surgery.
- Storage → data nodes. Remember Data keeps values between runs, Collection stores lists, and Scores keeps leaderboards — see working with data.
- Beyond Discord — the same canvas reacts to Twitch events (chat, follows, subs, raids, going live) and YouTube go-live/new-video events, in the same workflow as your Discord logic.
Where Noria is different — honestly
Autocode was an IDE in the browser. Noria is not:
- Visual-first, code-second. You build with nodes; the Code node handles snippets inside a workflow. You can't write and deploy an arbitrary Node.js app.
- No standard library of API wrappers. You get first-class Discord, Twitch, and YouTube nodes plus a generic HTTP Request node for everything else — not a package registry.
- That trade cuts both ways. You give up free-form code; you gain workflows a non-developer teammate can open, read, and safely edit.
If your Autocode projects were full applications, a code platform is still the right home for them. If they were what most Autocode projects actually were — "when X happens on Discord (or on a webhook), do Y" — Noria rebuilds them in minutes.
Popular Autocode projects, rebuilt
The projects people actually shipped on Autocode, and their Noria equivalent:
- Custom slash commands — a slash command trigger plus a reply action; start from the slash command help template.
- Welcome and onboarding bots — welcome message examples with auto-roles in the same flow.
- Webhook relays — GitHub, Stripe, or form submissions posted to Discord as clean embeds.
- Scheduled digests and reminders — cron in, message out, timezone-aware.
- Stream bots — chat commands and go-live alerts with the Twitch bot builder.
Rebuild an Autocode-style endpoint
The classic Autocode starter — a webhook that posts to Discord — as a ready template:
To build it yourself:
- Connect your Discord bot — your token is stored encrypted.
- Add a Webhook trigger and copy its URL. Set a Secret Token so strangers can't fire it.
- Add a Discord — Send Message action (or an embed) and reference the incoming data with variables like
{{requestBody.title}}. - Optionally drop in a Code node between the two if the payload needs reshaping.
- Test with a real request, then Activate.
For the scheduled-script pattern, start from the Scheduled weekly digest template instead — same idea, cron in, message out.
Keep building
Autocode proved that event-driven building is how most people actually want to automate. Noria keeps that spirit — events in, actions out, nothing to host — and makes it visual. Start building free; everything is unlocked during the beta.
Next steps: build your first workflow or go deeper on webhook automation.