Created
February 28, 2013 15:09
-
-
Save mdobson/5057416 to your computer and use it in GitHub Desktop.
Issue I'm running into with Chimera in nodejs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) { | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This causes a segfault. I'm fairly certain it's because of the browser sandbox.