Vibe
The runnable app people open and play with in the browser.
The interactive part of a project — a page, toy, game, tool, or experiment anyone can press play on and remix. It runs client-side, inside a sandbox.
Glossary
A plain-English glossary for vibecoders: the Vibecodr house words AND the standard developer terms you will run into the first time you ship something real. No CS degree required.
Two shelves. The handful of words that are specific to building here, defined in full over in the Lingo. And the everyday developer vocabulary — API, webhook, deployment, environment variable, CORS — each defined in a line and tied to how it actually shows up on Vibecodr.
The short list of words that are specific to building here. Quick reminders below; the full, warm definitions live in the Lingo, which this section links to.
Vibe
The interactive part of a project — a page, toy, game, tool, or experiment anyone can press play on and remix. It runs client-side, inside a sandbox.
Pulse
Server-side logic for the work that should not live in public browser code: secrets, storage, scheduled jobs, and calls out to other services. You add one only when the project actually needs it.
Combo
The front end people open, plus a backend doing trusted work behind it. When both are present, that is a Combo.
BUMP IT
Publishes a fresh cut without splitting it into a duplicate: the public URL and embeds keep working, and older versions stay for rollback.
Capsule
The home for the code and assets behind a project, before and between publishes — the editable source, not the frozen public copy.
Remix
You get your own version to build on while the link back to the original stays in view. Evolution in the open instead of a quiet copy-paste.
Studio
Paste or upload code, watch it run, tune it, and ship it — no local setup required.
Params
Change a few values, press play again, and watch the thing respond.
Vibe coding
Paste, upload, or generate code — often with an AI — then run, share, and remix it until it is right, instead of hand-writing every line up front.
Vibecoder
Sometimes a seasoned engineer, sometimes someone who started talking to an AI last week. On Vibecodr, everyone who publishes a vibe is one.
The everyday vocabulary of building and shipping software — defined plainly, and anchored to where you will meet each one on Vibecodr.
API
Application Programming Interface. When your vibe fetches weather data or calls your own Pulse, it is using an API.
Endpoint
A Pulse can expose HTTP endpoints that your vibe — or another service — calls.
Frontend
On Vibecodr, your vibe is the frontend.
Backend
On Vibecodr, a Pulse is your backend.
Framework
React, Vue, and Svelte are frameworks — paste one into Studio and it runs.
Library
A charting or date-handling library, for example, added as a dependency.
Runtime
Vibecodr runs each vibe in a sandboxed browser runtime; a Pulse runs in a server runtime at the edge.
Dependency
Vibecodr resolves and builds your dependencies when you import a repo.
Environment variable
A Pulse reads config and secrets this way — never your public vibe code.
Secret
Store API keys in a Pulse's secrets, never in a vibe, where anyone can read the source.
Webhook
Instead of you polling for changes, a Pulse can receive webhooks from Stripe, GitHub, and others.
Deployment
Publishing a vibe is a deployment — Vibecodr handles the servers and the URL.
Build
Vibecodr builds imported repos for you before they run.
Version control
Git is the common one; you can import a Git repo straight into a capsule.
Repository
Import a public repo and Vibecodr turns it into a runnable capsule.
Sandbox
Every vibe runs in a sandbox, so opening one is safe by default.
CORS
Cross-Origin Resource Sharing. A Pulse can set CORS headers so your vibe is allowed to call it.
CDN
Content Delivery Network. Vibecodr serves published work over one.
DNS
Point a custom domain at a Pulse by setting DNS records.
Database
A Pulse can use platform-managed storage instead of you running a database.
Cron job
A Pulse can run on a schedule with no server to babysit.
Authentication
Often shortened to 'auth'; a Pulse can gate actions behind it.
OAuth
'Sign in with GitHub' is OAuth.
JSON
JavaScript Object Notation — what a Pulse usually sends and receives.
HTTP / HTTPS
Vibecodr serves everything over HTTPS.
SSR vs CSR
Vibes are client-side by default; a Pulse can render or serve data server-side.
Client-side storage
Isolated per sandbox origin and gone if the visitor clears it — reach for a Pulse when storage must be durable or shared.
The Lingo for the house words in full, the docs for how things actually work, and the loop end to end.
Short answers for the places where marketing copy should stop hand-waving and say the plain thing.
No. Open the Studio, paste an idea, and you will pick up the words the first time you trip over one. This page is here for that moment: search the term, get a plain answer, keep building.
The Lingo is the deep dive on Vibecodr's own house words — Vibe, Remix, BUMP IT, Studio — in our voice. This glossary is the wider reference: those house words in brief, plus the standard developer terms anyone building software runs into.
Because a lot of vibecoders are shipping real apps without a traditional CS background. When 'environment variable' or 'CORS' shows up, you should get a straight answer tied to what it means here — not a textbook detour.
The house words are. The standard terms are defined the way the wider industry uses them, with a line on how each one shows up on Vibecodr so the jump from concept to product stays short.
The Lingo for the house words, and the docs for exact runtime behavior, file layout, and worked examples.