Konva.js is an HTML5 Canvas JavaScript framework that extends the 2d context by enabling canvas interactivity for desktop and mobile applications.
Go to file
2013-09-11 12:05:34 -07:00
doc-includes updated class config param doc include replacements with grunt 2013-06-01 10:27:44 -07:00
experimental Added experimental filter section. 2013-09-04 21:08:39 -04:00
src migrated TextPath and Shape tests to mocha 2013-09-10 21:17:56 -07:00
test finished migrating all unit tests over to Mocha 2013-09-11 12:02:03 -07:00
test-old removed test dependencies from grunt 2013-09-11 12:05:34 -07:00
.gitignore removed test dependencies from grunt 2013-09-11 12:05:34 -07:00
.travis.yml only run the tests on the latest version of nodesj 2013-08-28 23:51:34 -07:00
Gruntfile.js removed test dependencies from grunt 2013-09-11 12:05:34 -07:00
package.json introduced new Context class. I've bumped up the next release to v4.7.0 because this is a relatively big mind shift in how the framework works, and it's a big enough API change to warrant a minor update. This is the first step towards enabling context tracing for stellar unit testing 2013-08-31 21:49:18 -07:00
presentation-schedule.md Update presentation-schedule.md 2013-08-22 08:18:38 -04:00
README.md updated readme again 2013-09-10 21:52:11 -07:00

#Building the KineticJS Framework To build the framework, you need to have node installed. After that, run npm install in the main directory to install the node module dependencies.

To build a development version of the framework, run grunt dev. To run a full build, which also produces the minified version and the individually minified modules for the custom build, run grunt full. You can also run grunt beta to generate a beta version.

If you add a file in the src directory, be sure to add the filename to the sourceFiles array variable in Gruntfile.js.

#Testing

Build Status

KineticJS uses Mocha for testing. Just open up test/runner.html to run the tests in your favorite browser. To run the tests in PhantomJS, run mocha-phantomjs test/runner.html in the console.

KineticJS is covered with hundreds of tests and well over a thousand assertions. KineticJS uses TDD (test driven development) which means that every new feature or bug fix is accompanied with at least one new test.

#Pull Requests I'd be happy to review any pull requests that may better the KineticJS project, in particular if you have a bug fix, enhancement, or a new shape (see src/shapes for examples). Before doing so, please first make sure that all of the tests pass, and also make sure that you don't have any jshint errors. You can do so by running grunt hint