Mercurial > p > roundup > code
view 3rdparty/bootstrap/js/tests/server.js @ 5508:3d041e9044d5
use mysqlclient instead of MySQL-python as its available on Python 2 and 3
| author | Christof Meerwald <cmeerw@cmeerw.org> |
|---|---|
| date | Fri, 17 Aug 2018 19:46:04 +0100 |
| 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')
