diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-10-22 21:07:55 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-10-22 21:08:06 +0200 |
commit | 5821a949035a5e098a2c6b395818f5efa1c66f8e (patch) | |
tree | d422930b63ce2ed2a0276869173b2b9996fd6bfc /test/data/my-webapp/root/bin | |
parent | b48cb3ff989c7c8ad89f04c8eda5a0e8cf091bf7 (diff) | |
download | appstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.tar.gz appstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.tar.bz2 appstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.tar.xz appstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.zip |
wip
Diffstat (limited to 'test/data/my-webapp/root/bin')
-rwxr-xr-x | test/data/my-webapp/root/bin/app.js | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/test/data/my-webapp/root/bin/app.js b/test/data/my-webapp/root/bin/app.js new file mode 100755 index 0000000..992a701 --- /dev/null +++ b/test/data/my-webapp/root/bin/app.js @@ -0,0 +1,39 @@ +#!/usr/bin/env nodejs + +var http = require("http"), + url = require("url"), + path = require("path"), + fs = require("fs") + port = process.env.PORT || 8888; + +http.createServer(function(request, response) { + + var uri = url.parse(request.url).pathname + , filename = path.join(process.cwd(), uri); + + path.exists(filename, function(exists) { + if(!exists) { + response.writeHead(404, {"Content-Type": "text/plain"}); + response.write("404 Not Found\n"); + response.end(); + return; + } + + if (fs.statSync(filename).isDirectory()) filename += '/index.html'; + + fs.readFile(filename, "binary", function(err, file) { + if(err) { + response.writeHead(500, {"Content-Type": "text/plain"}); + response.write(err + "\n"); + response.end(); + return; + } + + response.writeHead(200); + response.write(file, "binary"); + response.end(); + }); + }); +}).listen(parseInt(port, 10)); + +console.log("Static file server running at\n => http://localhost:" + port + "/\nCTRL + C to shutdown"); |