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...