A simple jump and run game.
This should run in any recent browser with html5 support.
- Make sure you have node.js (min 7.10.0) and git installed.
- Clone this repository with
git clone [email protected]:danielHpeters/quest-for-nothing.gitorgit clone https://github.com/danielHpeters/quest-for-nothing.git. - Run
npm installcommand in the root directory of the clone. - Run
npm install gulp-clito enable the gulp command globally. - Run
npm startcommand to start the server. - Open a browser and enter http://localhost:3000 in the search bar to start playing.
This project uses gulp for build automation (transpiling and minifying JavaScript and code linting.
gulp defaultcommand runs all these tasks.gulp 'build:serverfor converting server side code to JavaScript and then copying it to thedistfolder.gulp 'build:clientfor packing, converting and minifying client side JavaScript files.gulp lintchecks the code style. We use TSLint in combination with the standard.js coding standard.gulp testruns all tests.- Source maps are automatically generated on build. This allows debugging of minified scripts in browser developer consoles
See ROADMAP.md
See CONTRIBUTING.md