Fax / first-fist

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

First Fist

First Fist by fax.

This is not a game but an just a test. The generator created a base that has been converted to a valid ES6 application. Babelify works correctly and browserify creates a single bundled js.

Initial scaffolding generated with generator-gamejam.

Installation

Requirements

This games uses gulp for building and tasks automation.

You can install gulp with npm:

npm install -g gulp

Build

Clone this repository and install dependencies:

git clone fax/first-fist
cd first-fist
npm install

To build the game, run the dist task from the project root:

gulp dist

The dist folder will contain a build of the game. You can then start a local server that serves this directory statically to play the game in local:

npm install -g http-server
http-server dist

You can clean up the temporary files and the dist folder by running:

gulp clean

Development

This project uses Browserify to handle JavaScript modules.

There is a task that will automatically run Browserify when a JavaScript file changes, and it will also reload the browser.

gulp run

You can deploy to Github Pages with the deploy:ghpages task, which will build the project and then push the dist folder in the gh-pages branch.

gulp deploy:ghpages

About


Languages

Language:JavaScript 75.7%Language:HTML 18.5%Language:CSS 5.8%