phantomjs-remote
v0.0.9
Published
Run PhantomJS scripts on a remote server
Downloads
4
Readme
phantomjs-remote
Run PhantomJS scripts on a remote server (e.g. if the phantomjs binary is not available on the local system, like a PaaS virtual machine with an unsupported architecture for phantomjs node wrapper.)
This is my first node.js script, go easy on me :)
Usage
var phantomjs_remote = require('phantomjs-remote');
phantomjs_remote.send(phantomJsScript, callback, [options], [host], [port]).
options is an optional JSON dictionary with any required options, for now only load-images is supported, e.g. { 'load-images': 'no' }.
The last two options may be ommitted if PHANTOMJS_REMOTE environment variable is set with "host:port".
Short example:
phantomjs_remote('console.log(1); phantom.exit();', function(error, result) {
if (!error)
console.log(result);
}, { 'load-images': 'no'} );
Server script / SECURITY
You are advised against running this script on it's own and should instead:
- Run it in a chroot jail
- Firewall the port to only receive connections from trusted hosts
Anyways, run like this:
node phantom-server.js <listenPort>
or
while `true`; do node phantom-server.js <listenPort> ; done