Tutorial by Examples

Create a folder Create an index.html inside the new directory. Open it in the Bracket editor Download the Phaser repository from github, then grab the phaser.js file from the build folder. Place the file inside your project directory. Open index.html and link the phaser.js inside the header tag...
Create a folder where you would like to have your game live, and move into that mkdir my-new-game cd my-new-game Initialize the directory using npm. npm init -y Install phaser as a node package. npm install phaser Install http-server as a global module, to be used on the...

Page 1 of 1