Install all the tools you need to create your visual novel
To develop in Monogatari you'll need the same tools used for web development. This means all you need is a text editor for editing HTML, JavaScript, and CSS files. Optionally, you may also use a local web server while developing your novel.
Getting a Browser
You already have one, but is it the best one for development?
We recommend using either Chrome or Firefox for development. While your game will run in any modern browser, both Chrome and Firefox have excellent developer tools that will make debugging and testing much easier.
Why These Browsers?
Built-in developer console for debugging
Network inspection for asset loading
Performance profiling tools
Service worker debugging support
Getting a Code Editor
What editor to use comes down to personal preference, but almost any text/code editor should work—you can even use Windows Notepad! However, using a code editor designed for development will make your life much easier with features like:
Syntax highlighting (colors for functions, variables, etc.)
If you've never used a code editor before, we recommend Visual Studio Code for its ease of use and excellent JavaScript support.
Getting a Local Web Server (Optional)
A web server retrieves and sends files to your browser when you visit a website. While optional, running a local web server enables important features during development.