Sha256: 174481b2202e6006308c7119c9a3d760817f0a1dfebc36a9ffcb039238bcddca

Contents?: true

Size: 1.3 KB

Versions: 17

Compression:

Stored size: 1.3 KB

Contents

page = require("webpage").create()
server = require("webserver").create()
system = require("system")
host = undefined
port = undefined
if system.args.length isnt 2
  console.log "Usage: server.js <some port>"
  phantom.exit 1
else
  port = system.args[1]
  listening = server.listen(port, (request, response) ->
    console.log "GOT HTTP REQUEST"
    console.log JSON.stringify(request, null, 4)
    
    # we set the headers here
    response.statusCode = 200
    response.headers =
      Cache: "no-cache"
      "Content-Type": "text/html"

    
    # this is also possible:
    response.setHeader "foo", "bar"
    
    # now we write the body
    # note: the headers above will now be sent implictly
    response.write "<html><head><title>YES!</title></head>"
    
    # note: writeBody can be called multiple times
    response.write "<body><p>pretty cool :)</body></html>"
    response.close()
  )
  unless listening
    console.log "could not create web server listening on port " + port
    phantom.exit()
  url = "http://localhost:" + port + "/foo/bar.php?asdf=true"
  console.log "SENDING REQUEST TO:"
  console.log url
  page.open url, (status) ->
    if status isnt "success"
      console.log "FAIL to load the address"
    else
      console.log "GOT REPLY FROM SERVER:"
      console.log page.content
    phantom.exit()

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
hooch-0.4.2 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee
hooch-0.4.1 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee
hooch-0.4.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee
hooch-0.3.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee
hooch-0.2.1 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee
hooch-0.2.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee
hooch-0.1.0 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee
hooch-0.0.8 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee
hooch-0.0.7 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee
hooch-0.0.6 jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee
entangled-0.0.16 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/server.coffee
entangled-0.0.15 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/server.coffee
entangled-0.0.14 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/server.coffee
entangled-0.0.13 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/server.coffee
entangled-0.0.12 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/server.coffee
entangled-0.0.11 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/server.coffee
entangled-0.0.10 spec/dummy/public/node_modules/phantomjs/lib/phantom/examples/server.coffee