Simple 2D platformer created to get familiar with Phaser.
You'll need Node.js, npm, and Parcel installed.
It is highly recommended to use Node Version Manager (nvm) to install Node.js and npm.
For Windows users there is Node Version Manager for Windows.
Install Node.js and npm with nvm:
nvm install node
nvm use nodeReplace 'node' with 'latest' for nvm-windows.
Then install Parcel:
npm install -g parcel-bundlerClone this repository to your local machine:
git clone https://github.com/Ksinia/johny_flame_platformer.gitGo into your new project folder and install dependencies:
cd johny_flame_platformer
npm installStart development server on localhost:8000:
npm run start
To create a production build:
npm run build
Production files will be placed in the dist folder. Then upload those files to a web server.
