Davis Ford
Davis Ford
Related, but what if I wish to pass a specific cookie to the renderer? I wrote my own version of this utility, but am looking at this repo b/c the...
I [forked and added experimental support for passing cookies through](https://github.com/davisford/phantom-render-stream/tree/cookies) b/c I have an immediate need for this, and wanted to try it out. If there is any interest from...
The alternative way to pass cookies to PhantomJS is to indicate it via the command line arg: `--cookies-file=/path/to/cookies.txt`. If you specify that, it will write them to a file. If...
@markstos I can verify that my PR https://github.com/e-conomic/phantom-render-stream/pull/65 definitely allows for page `console.log` output regardless of whether it is valid json or not. I've been using it for a while...
`maxRenders` is not set currently, so I guess it would be 20. The box is an EC2 [c3.large](http://aws.amazon.com/ec2/instance-types/) with 3.7GB RAM. With the current workload / frequency on this particular...
Oh wow -- I missed that it was being set to 500. Will try to force it to a more sane value.
Yes, AFAIK it still leaks. I just basically disabled the pool to keep it stable, so each request spawns a whole new phantom process for me and destroys it at...
Yes, we switched to nightmare.js with electron.io -- it works great. It was a bit of a pain to get working but it has been running in production for months...
Sorry for the lag in response. One thing...with electron/nightmare, you need to use xvfb..example script to start process: ```sh #!/bin/sh xvfb-run -a /usr/bin/node $(pwd)/app.js ``` Here's a snippet of how...
@gordonwoodhull here is a related dilemma I'm trying to resolve right now. Have any suggestions? x axis is time: `.x(d3.time.scale().domain([beginHour, endHour])` -- with sufficient data points it looks fine: ![screen...