This game is available on itch.io and is part of Neuro-sama Game Jam 2.
- Download the
ziparchive for your operating system from the releases page - Extract the archive in a location of your choice
- Locate the
run_game.bat(Windows) orrun_game.sh(Linux and macOS) script - There should be a
config.jsonfile in the same directory; it can be edited to change the port the server is running on - Double-click on the script to launch the game
- If nothing happens, or the script is opened as a text file, try right-clicking it to see if there's an option to run it as a program
- If this doesn't work either, the executable file can be run from a terminal by navigating to it using
cdand runningterminal-game-windows.exe(for Windows),./terminal-game-linux(for Linux), or./terminal-game-macos(for macOS)
- Open
localhost:3000in your web browser- If you changed the server port in
config.json, use that port instead of3000 - If you're confused about what page to open, look at the text being printed to the terminal. One of the first lines will look something like
Game running at http://localhost:3000. Simply copy that URL into your web browser.
- If you changed the server port in
To run from source, you must have Node.js installed.
- Run
cd game - Run
npm installto install the necessary dependencies - Run
npm run startto start the game - Edit
config.jsonto avoid port conflicts, if necessary - Open the game's web page (
http://localhost:3000by default)
If this program refuses to release port 3000, it can be terminated by running npx kill-port 3000.
If you're using a different port, replace 3000 with that number.