summaryrefslogtreecommitdiff
path: root/test/data/my-webapp/root/bin/app.js
diff options
context:
space:
mode:
authorTrygve Laugstøl <trygvis@inamo.no>2013-10-27 15:14:18 +0100
committerTrygve Laugstøl <trygvis@inamo.no>2013-10-27 15:14:18 +0100
commit0d92ff5fd34d79b54c30c38ac41bc600acf7b7c4 (patch)
tree7807b9d017e44bc522a75f40c7a4589d994455f8 /test/data/my-webapp/root/bin/app.js
parent5821a949035a5e098a2c6b395818f5efa1c66f8e (diff)
downloadappstore-0d92ff5fd34d79b54c30c38ac41bc600acf7b7c4.tar.gz
appstore-0d92ff5fd34d79b54c30c38ac41bc600acf7b7c4.tar.bz2
appstore-0d92ff5fd34d79b54c30c38ac41bc600acf7b7c4.tar.xz
appstore-0d92ff5fd34d79b54c30c38ac41bc600acf7b7c4.zip
o Dropping the CSV file for using a native app config file instead.
o Using apache as an example app. o Adding appstore-add-app as a utility to register appliations.
Diffstat (limited to 'test/data/my-webapp/root/bin/app.js')
-rwxr-xr-xtest/data/my-webapp/root/bin/app.js39
1 files changed, 0 insertions, 39 deletions
diff --git a/test/data/my-webapp/root/bin/app.js b/test/data/my-webapp/root/bin/app.js
deleted file mode 100755
index 992a701..0000000
--- a/test/data/my-webapp/root/bin/app.js
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/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");