Example from http://melonjs.github.io/tutorial-platformer/
To build, be sure you have node installed. Clone the project:
git clone https://github.com/melonjs/boilerplate.git
Then in the cloned directory, simply run:
npm install
You must also have grunt-cli
installed globally:
npm install -g grunt-cli
Running the game:
grunt serve
And you will have the boilerplate example running on http://localhost:8000
To build:
grunt
This will create a build
directory containing the files that can be uploaded to a server, or packaged into a mobile app.
Building a standalone desktop release:
grunt dist
Running the desktop release on Windows:
.\bin\electron.exe
Running the desktop release on macOS:
open ./bin/Electron.app
Running the desktop release on Linux:
./bin/electron