Mercurial > p > roundup > code
view 3rdparty/bootstrap/js/tests/server.js @ 4946:8aac417c1899 routing
Docfixes
| author | anatoly techtonik <techtonik@gmail.com> |
|---|---|
| date | Wed, 26 Nov 2014 09:40:51 +0300 |
| 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')
