A community run listing of game jams.
Instructions for adding a new jam: https://github.com/leafo/compohub/tree/master/jams#how-to-add-a-new-jam
Running the project in a local Node.js server with Grunt should get around any XMLHttpRequest
errors that may come up when trying to run index.html through file://
. It also compiles changes to jamhub.js and jamhub.css whenever you make changes.
First start by installing Node.js. After installing Node.js, you should be able to start a local server by running the following commands in your command prompt:
npm install -g grunt-cli
npm install
grunt serve
This will:
- Globally install the grunt-cli package, giving you access to the
grunt
command used to run Grunt tasks. - Locally install any Node.js packages required by the project.
- Run the
serve
Grunt task, which will compile the coffee and sass files, run a local server and listen for any file changes.
After checking out the repository you'll need a
CoffeeScript compiler and a SCSS
compiler. Compile the coffee
and scss
files in the
main directory then you can view index.html
in your browser to see the jams.
Found something wrong or want to see a new feature? Add an issue to the issues tracker.