1
0
mirror of https://github.com/ubf/ubf.git synced 2026-04-30 00:28:28 +00:00
Files
ubf/bootstrap/js/tests/server.js
Joseph Wayne Norton 87038e9f3b UBF 2.1 web assets
2013-03-25 13:01:33 +09:00

14 lines
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')