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
Evan Hahn 9210407ba4 Add Bower support
If this is merged into `master`, it'll need to be tagged as version
4.7.0 so that Bower will work.

    git tag -a v4.7.0
2013-09-01 11:55:52 -04:00
configParams heavily updated documentation 2013-05-07 10:19:54 -07:00
doc-includes updated class config param doc include replacements with grunt 2013-06-01 10:27:44 -07:00
src finished up all of the context traces for a simple rectangle rendering, and added unit test 2013-09-01 02:03:24 -07:00
test finished up all of the context traces for a simple rectangle rendering, and added unit test 2013-09-01 02:03:24 -07:00
tests resolved conflicts 2013-08-31 21:53:42 -07:00
.gitignore Add Bower support 2013-09-01 11:55:52 -04:00
.travis.yml only run the tests on the latest version of nodesj 2013-08-28 23:51:34 -07:00
bower.json Add Bower support 2013-09-01 11:55:52 -04:00
Gruntfile.js 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
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 removed status string from readme 2013-08-28 23:58:06 -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

Getting the tests up and running

Currently, KineticJS has unit, functional, visual, manual, performance, and special test suites. Open tests/html/index.html to run each test suite. Before running any of the tests, be sure to build a dev version first with grunt dev. To build the unit tests, you'll need to build the unitTests.js file by running grunt test and then opening unitTests.html.

Running the tests

Unit, functional, and performance tests output the results to the console via console.log() so be sure to have it open.

In order for the data url tests and image manipulation tests to pass, you need to run the unit test suite on a web server due to canvas security constraints (read more about that here). All tests should pass in Google Chrome on Windows 7 with no warnings, and all tests should pass with some warnings in other browsers and operating systems.

Updating the tests

To add / modify unit tests, be sure to do so in the tests/js/unit directory, because these are the source test files that are concatenated together when building unitTests.js. Use test() for hard tests which will throw an error if something fails, and use warn() for soft tests that will allow the tests to continue if the test condition fails. The warn() method is great for tests that will have different results in different browsers, such as canvas data url comparisons, text metric dimensions, etc.

TIP: prepend a test name with a * to only run that particular test, or prepend a test name with ! to omit that 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 unit tests and functional tests pass, and also make sure that you don't have any jshint errors. You can do so by running grunt hint