view 3rdparty/bootstrap/js/tests/server.js @ 5300:d8ed32b297e2

Update to migrating backend and tweak to install doc.
author John Rouillard <rouilj@ieee.org>
date Thu, 05 Oct 2017 17:41:18 -0400
parents c109f7c1e477
children
line wrap: on
line source

/*
 * 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')

Roundup Issue Tracker: http://roundup-tracker.org/