view 3rdparty/bootstrap/js/tests/server.js @ 6033:4d2e1fa03f0f

flake8 format fixes, ignore 'file' as it is a type under py2
author John Rouillard <rouilj@ieee.org>
date Fri, 03 Jan 2020 21:22:36 -0500
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/