Vibe coding

Vibe coding is building software by describing what you want to a language model and accepting the code it produces without reading it closely — judging the result by whether it appears to work rather than by inspecting how. The term was coined by Andrej Karpathy in early 2025.

What the term actually meant

Karpathy's original description was specific and slightly self-mocking: you talk to the model, accept diffs without reading them, paste errors back in without analysing them, and when something breaks you ask for a change rather than debug. His own framing was that this is fine for throwaway weekend projects.

That qualifier gets dropped constantly. The term is now used for anything involving an AI coding tool, including careful work where every diff is reviewed — which is just programming with a fast assistant, and not what the word describes.

Where it works

It is genuinely good for a bounded set of things:

An AI app builder is the tooling built around this workflow, and it makes the loop fast enough that the approach becomes viable for far more people than before.

What to watch out for

The code you did not read is still your responsibility. Not reading it does not move the liability, and this is where the practice stops being harmless:

The workable discipline is not abstinence, it is scope. Vibe code the prototype, then read the code before real users or real data arrive — particularly anything touching authentication, payments or personal data. Keeping it in version control from the first commit costs nothing and gives you the ability to see what actually changed.

Frequently asked questions

Is vibe coding safe for a production app?

Not without a review step. Generated code routinely looks correct while missing authorisation checks, exposing secrets or building injectable queries, and none of that shows up in testing whether the app works. Use it to reach a working version quickly, then read the code before real users or personal data are involved.

Build it yourself

NorthernGo turns a plain-text description into a working web app with a database, login and a live URL. Local AI generation runs on your own GPU, is unlimited, and is free on every plan.

Start building free