-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathserver.js
41 lines (40 loc) · 1.25 KB
/
server.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
var nStatic = require("node-static"),
path = require("path"),
Seq = require("seq"),
fs = require("fs"),
http = require("http"),
sys = require("sys"),
fileServer = new nStatic.Server(path.normalize("" + __dirname + "/public")),
arbys_head = path.normalize("./wrap/head.html"),
arbys_foot = path.normalize("./wrap/foot.html"),
arbys_main = path.normalize("./arbys.html");
Seq()
.par(function() {
// load head
fs.readFile(arbys_head, this);
})
.par(function() {
// load foot
fs.readFile(arbys_foot, this);
})
.par(function() {
// load body
fs.readFile(arbys_main, this);
})
.seq(function(head, foot, body) {
// start server on port 3000
// if not a static file in our repo, then hand out arbys page
http.createServer(function(request, response) {
fileServer.serve(request, response, function(err, result) {
if ((err != null ? err.status : void 0) === 404) {
// not a static file
return response.end([head, body, foot].join("\n"));
} else if (err != null) {
sys.error("Error serving " + request.url + " - " + request.message);
response.writeHead(err.status, err.headers);
return response.end;
}
});
}).listen(3000);
sys.log("Server listening on port 3000");
});