Skip to content

Instantly share code, notes, and snippets.

@mdobson
Created February 28, 2013 15:09
Show Gist options
  • Save mdobson/5057416 to your computer and use it in GitHub Desktop.
Save mdobson/5057416 to your computer and use it in GitHub Desktop.
Issue I'm running into with Chimera in nodejs
var Chimera = require('chimera').Chimera;
var c = new Chimera();
var pageUrl = "http://www.google.com";
c.perform({
url: pageUrl,
locals: {
},
run: function(callback) {
callback(null, "success");
},
callback: function(err, result) {
}
});
@mdobson
Copy link
Author

mdobson commented Feb 28, 2013

This causes a segfault. I'm fairly certain it's because of the browser sandbox.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment