$ npm install phantomjs-prebuilt-that-worksAn NPM installer for PhantomJS, headless webkit with JS API.
Automatically falls back to other CDNs if the main one is down or oversaturated. Hence the name of this fork.
As a library:
npm install phantomjs-prebuilt-that-works
As a cli command:
npm install -g phantomjs-prebuilt-that-works
phantomjs [phantom arguments]
The package exports a path string that contains the path to the
phantomjs binary/executable.
Below is an example of using this package via node.
var path = require('path')
var childProcess = require('child_process')
var phantomjs = require('phantomjs-prebuilt-that-works')
var binPath = phantomjs.path
var childArgs = [
path.join(__dirname, 'phantomjs-script.js'),
'some other argument (passed to phantomjs script)'
]
childProcess.execFile(binPath, childArgs, function(err, stdout, stderr) {
// handle results
})
Or exec() method is also provided for convenience:
var phantomjs = require('phantomjs-prebuilt-that-works')
var program = phantomjs.exec('phantomjs-script.js', 'arg1', 'arg2')
program.stdout.pipe(process.stdout)
program.stderr.pipe(process.stderr)
program.on('exit', code => {
// do something on end
})
Note: childProcess.spawn() is called inside exec().
run() method detects when PhantomJS gets ready. It's handy to use with WebDriver (Selenium).
var phantomjs = require('phantomjs-prebuilt-that-works')
var webdriverio = require('webdriverio')
var wdOpts = { desiredCapabilities: { browserName: 'phantomjs' } }
phantomjs.run('--webdriver=4444').then(program => {
webdriverio.remote(wdOpts).init()
.url('https://developer.mozilla.org/en-US/')
.getTitle().then(title => {
console.log(title) // 'Mozilla Developer Network'
program.kill() // quits PhantomJS
})
})
If you plan to install phantomjs many times on a single machine, you can
install the phantomjs binary on PATH. The installer will automatically detect
and use that for non-global installs.
PhantomJS is not a library for NodeJS. It's a separate environment and code written for node is unlikely to be compatible. In particular PhantomJS does not expose a Common JS package loader.
This is an NPM wrapper and can be used to conveniently make Phantom available. It is not a Node JS wrapper.
I have had reasonable experiences writing standalone Phantom scripts which I then drive from within a node program by spawning phantom in a child process.
Read the PhantomJS FAQ for more details: http://phantomjs.org/faq.html
An extra note on Linux usage, from the PhantomJS download page:
There is no requirement to install Qt, WebKit, or any other libraries. It however still relies on Fontconfig (the package fontconfig or libfontconfig, depending on the distribution).
spawn ENOENTThis is NPM's way of telling you that it was not able to start a process. It usually means:
node is not on your PATH, or otherwise not correctly installed.tar is not on your PATH. This package expects tar on your PATH on Linux-based platforms.Check your specific error message for more information.
Error: EPERM or operation not permitted or permission deniedThis error means that NPM was not able to install phantomjs to the file system. There are three major reasons why this could happen:
npm cache clean to fix them.Error: read ECONNRESET or Error: connect ETIMEDOUTThis error means that something went wrong with your internet connection, and the installer was not able to download the PhantomJS binary for your platform. Please try again.
ECONNRESET or ETIMEDOUT consistently.Do you live in China, or a country with an authoritarian government? We've seen problems where the GFW or local ISP blocks github, preventing the installer from downloading the binary.
Try visiting the download page manually.
If that page is blocked, you can try using a different CDN with the PHANTOMJS_CDNURL
env variable described above.
You can tell NPM and the PhantomJS installer to skip validation of ssl keys with NPM's strict-ssl setting:
npm set strict-ssl false
WARNING: Turning off strict-ssl leaves you vulnerable to attackers reading
your encrypted traffic, so run this at your own risk!
If you install PhantomJS manually, and put it on PATH, the installer will try to use the manually-installed binaries.
nodeSome Linux distros tried to rename node to nodejs due to a package
conflict. This is a non-portable change, and we do not try to support this. The
official documentation
recommends that you run apt-get install nodejs-legacy to symlink node to nodejs
on those platforms, or many NodeJS programs won't work properly.
Copyright 2012 A Medium Corporation.
Copyright 2015 Julian Gruber.
Licensed under the Apache License, Version 2.0.
See the top-level file LICENSE.txt and
(http://www.apache.org/licenses/LICENSE-2.0).