Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 962 Bytes

README.md

File metadata and controls

42 lines (28 loc) · 962 Bytes

canvace.js

This repository holds the JavaScript game engine of the Canvace Platform, canvace.js.

canvace.js is dual licensed under the MIT and GPLv3 licenses.

Prerequisites for the build

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

Building the library

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.

Building the documentation

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.