annotate static/bootstrap/js/tests/server.js @ 134:f47b047c9414
Changed URL schemes around meta pages:
- They're now handled the same as normal pages.
- Added endpoint to get the main page.
- Reduced a bit the amount of redundant unquoting/URL massaging.
author |
Ludovic Chabant <ludovic@chabant.com> |
date |
Thu, 05 Dec 2013 08:22:55 -0800 |
parents |
a5a3d454eac9 |
children |
|
rev |
line source |
88
|
1 /*
|
|
2 * Simple connect server for phantom.js
|
|
3 * Adapted from Modernizr
|
|
4 */
|
|
5
|
|
6 var connect = require('connect')
|
|
7 , http = require('http')
|
|
8 , fs = require('fs')
|
|
9 , app = connect()
|
|
10 .use(connect.static(__dirname + '/../../'));
|
|
11
|
|
12 http.createServer(app).listen(3000);
|
|
13
|
|
14 fs.writeFileSync(__dirname + '/pid.txt', process.pid, 'utf-8') |