phantom-sync

sync version of phantom

Usage no npm install needed!

<script type="module">
  import phantomSync from 'https://cdn.skypack.dev/phantom-sync';
</script>

README

Note: I don't really use nor support my fibers related packages, If someone is using it and willing to take over, let me know.

node-phantomjs-sync Build Status

Note: API change in version 1.0.0, see section below.

This is a synchronous version of the phantom for node module using fibers.

install

npm install phantom-sync

upgrade to V1

The main changes are the following:

  • 1/ async and mixed mode options have been removed
  • 2/ require should be: {phantom,sync} = require 'phantom-sync'
  • 3/ no need to create a Phantom object

usage (coffeescript)

{phantom,sync} = require 'phantom-sync'

sync ->
  ph = phantom.create()
  page = ph.createPage()
  status = page.open "http://www.google.com"
  console.log "status=", status  
  title = page.evaluate ->
    document.title
  console.log "title=", title
  ph.exit()  

API

This is the phantom for node API where that callbacks have been transformed into returns. Therefore it should be very similar to the PhantomJS API, except for the getters/setters function which need to be called like in the following code:

page.set 'settings.loadImages', false
page.get 'settings.loadImages'

Bitdeli Badge