Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Nodejs : Kineticjs in nodejs

I install the package Kineticjs in nodejs and have the following error message:

Kinetic.window = Kinetic.document.createWindow();
                                              ^
TypeError: undefined is not a function
    at /kinetic/kinetic.js:608:47
like image 641
Huy it Avatar asked Apr 06 '15 03:04

Huy it


1 Answers

document.createWindowwas removed from jsdom 1.0.0-pre.1. Use jsdom 0.11.1 with kinetic

like image 75
Nam Tran Avatar answered Oct 21 '22 22:10

Nam Tran