blob: 7c8445feb89937219c1c120c15c1ab7819e1cb2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  | 
/*
 * Simple connect server for phantom.js
 * Adapted from Modernizr
 */
var connect = require('connect')
  , http = require('http')
  , fs   = require('fs')
  , app = connect()
      .use(connect.static(__dirname + '/../../'));
http.createServer(app).listen(3000);
fs.writeFileSync(__dirname + '/pid.txt', process.pid, 'utf-8')
  |