14 lines
No EOL
331 B
JavaScript
14 lines
No EOL
331 B
JavaScript
/*
|
|
* 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') |