phantom = require 'phantom'
phantom.create (ph) ->
ph.createPage (page) ->
page.open "http://www.google.com", (status) ->
console.log "opened google? ", status
page.evaluate (-> document.title), (result) ->
console.log 'Page title is ' + result
ph.exit()
我尝试使用这个网站,但它似乎不是很准确。它到处都有回报。 http://js2coffee.org/#coffee2js