mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 18:16:18 +00:00
f30a7cc61d
We're going to build a custom version
14 lines
331 B
JavaScript
Executable File
14 lines
331 B
JavaScript
Executable File
/*
|
|
* 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') |