deanmao / node-chimera

A new kind of headless webkit integration for nodejs; a great alternative to phantomjs.
http://www.deanmao.com/2012/08/13/enter-chimera/
MIT License
847 stars 45 forks source link

Chimera thread doesnt close. #35

Open wrotek opened 11 years ago

wrotek commented 11 years ago

Hello, Im using nodejs v0.8.23-pre (Chimera doesnt work with 0.10.x) on Ubuntu 12.10 x64. For now everything works except close() method. Even with simple example script like:

var c = new Chimera(); c.perform({ url: "http://www.google.com", locals: { }, run: function(callback) { callback(null, "success"); }, callback: function(err, result) { console.log(status) c.close(); } });

Script doesnt end, and chimera thread is kept till i kill nodejs process.

mattpal commented 11 years ago

I'm seeing the same issue ...