/johny_flame_platformer

🔥2D Scrolling Platformer Prototype

Primary LanguageTypeScriptMIT LicenseMIT

Johny Flame game

Simple 2D platformer created to get familiar with Phaser.

Screenshot

Prerequisites

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 node

Replace 'node' with 'latest' for nvm-windows.

Then install Parcel:

npm install -g parcel-bundler

Getting Started

Clone this repository to your local machine:

git clone https://github.com/Ksinia/johny_flame_platformer.git

Go into your new project folder and install dependencies:

cd johny_flame_platformer
npm install

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