Building and exporting your game
You can build your game as a static website
npm run build
This will generate a built version of your game as a website in the
build/
folderThe narrat template is already setup to use electron to easily build a desktop application out of your game.
- If you're installing git on windows, using the default options for every step in the setup process is fine
You can run your game as an app:
npm run electron
Or you can package it as an executable (should work on Windows, Mac, Linux):
npm run package
This will create an application for your OS in the
out/
folderPlease look at the electron documentation if you want to customise how your app is built, window sizes and other things (hint: Most of it takes place in the
electron-something.js
files at the root of the repo)See the following page