Merge branch 'gh-pages' of http://github.com/teamsnowman/hextris into gh-pages
This commit is contained in:
commit
a247788fc2
1 changed files with 0 additions and 19 deletions
19
server.js
19
server.js
|
@ -1,19 +0,0 @@
|
|||
// HackExeter
|
||||
var app = require('http').createServer(handler),
|
||||
fs = require('fs');
|
||||
|
||||
app.listen(80);
|
||||
|
||||
|
||||
function handler (req, res) {
|
||||
fs.readFile(__dirname + req['url'],
|
||||
function (err, data) {
|
||||
if (err) {
|
||||
res.writeHead(500);
|
||||
return res.end('<h3>Error loading ' + __dirname + req['url'] + '</h3>');
|
||||
}
|
||||
|
||||
res.writeHead(200);
|
||||
res.end(data);
|
||||
});
|
||||
}
|
Loading…
Reference in a new issue