summaryrefslogtreecommitdiff
path: root/test/data/my-webapp/root/app.js
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-10-22 21:07:55 +0200
committerTrygve Laugstøl <trygvis@inamo.no>2013-10-22 21:08:06 +0200
commit5821a949035a5e098a2c6b395818f5efa1c66f8e (patch)
treed422930b63ce2ed2a0276869173b2b9996fd6bfc /test/data/my-webapp/root/app.js
parentb48cb3ff989c7c8ad89f04c8eda5a0e8cf091bf7 (diff)
downloadappstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.tar.gz
appstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.tar.bz2
appstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.tar.xz
appstore-5821a949035a5e098a2c6b395818f5efa1c66f8e.zip
wip
Diffstat (limited to 'test/data/my-webapp/root/app.js')
-rw-r--r--test/data/my-webapp/root/app.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/test/data/my-webapp/root/app.js b/test/data/my-webapp/root/app.js
deleted file mode 100644
index 29298b3..0000000
--- a/test/data/my-webapp/root/app.js
+++ /dev/null
@@ -1,37 +0,0 @@
-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");