This repository holds the JavaScript game engine of the Canvace Platform, canvace.js.
canvace.js is dual licensed under the MIT and GPLv3 licenses.
You'll need Grunt 0.4.x.
Once you've made sure you have Grunt installed, you can install all the required gruntplugins and related Node.js modules by moving to the root of the repository within the command shell and entering the following command:
npm install
You can easily build the library by launching the default Grunt task:
grunt
The build process will output two files: bin/canvace.js
and its minified
counterpart, bin/canvace.min.js
.
The documentation uses YUIDoc and is built by a separate Grunt task:
grunt yuidoc
After the build, you'll find the documentation in the doc
directory.