Getting Started
Welcome to Monogatari! In this guide you’ll go from nothing to a playable visual novel running in your browser, with a live-reload workflow that updates the moment you save a file.
It takes about 15–20 minutes, and you don’t need to be a programmer — if you can edit a text file, you can make a visual novel.
What you’ll build
By the end you’ll have the starter project running locally and you’ll have written and tested your own dialog, a character, and a scene — the core loop of making a Monogatari game.
The four steps
- Set up your environment — A browser, a code editor, and Bun.
- Get Monogatari running — Get the template and start the dev server.
- Get familiarized — A quick tour so you know where everything lives.
- Make your first visual novel — Write, save, and watch it update live.
TIP
Already comfortable with the web? The short version: get the template, run
bun run serve, open http://localhost:5100, and edit js/script.js. The rest of
this guide explains each part.