summaryrefslogtreecommitdiffstats
path: root/express
diff options
context:
space:
mode:
authorKyle K <kylek389@gmail.com>2012-07-01 03:11:47 -0500
committerKyle Kaminski <kyle@kkaminsk.com>2012-07-01 03:11:47 -0500
commit8263f26456dbcd7d5871fc5b394d08af8f4f63b4 (patch)
tree7c3bd8f82e707b3c273870001b37bb21258e0811 /express
parentf052db6b797d7b2f08263ed39ced3c2095c4658d (diff)
downloadfubar-8263f26456dbcd7d5871fc5b394d08af8f4f63b4.tar.gz
fubar-8263f26456dbcd7d5871fc5b394d08af8f4f63b4.tar.bz2
fubar-8263f26456dbcd7d5871fc5b394d08af8f4f63b4.zip
it is really hard to read traces and errors
Diffstat (limited to 'express')
-rw-r--r--express/app1.js2
-rw-r--r--express/app2.js2
-rw-r--r--express/app3.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/express/app1.js b/express/app1.js
index 8c25531..a9d0d2b 100644
--- a/express/app1.js
+++ b/express/app1.js
@@ -1,6 +1,6 @@
var express = require('express');
-var app = express.createServer()
+var app = express.createServer();
app.configure('dev', function() {
app.use(express.errorHandler({
diff --git a/express/app2.js b/express/app2.js
index 292741b..bd03664 100644
--- a/express/app2.js
+++ b/express/app2.js
@@ -1,7 +1,7 @@
var express = require('express');
var util = require('util');
-var app = express.createServer()
+var app = express.createServer();
var pagehits = 0;
app.configure('dev', function() {
diff --git a/express/app3.js b/express/app3.js
index 1532b28..0c2acd4 100644
--- a/express/app3.js
+++ b/express/app3.js
@@ -7,7 +7,7 @@ var express = require('express');
var util = require('util');
var RedisStore = require('connect-redis')(express);
-var app = express.createServer()
+var app = express.createServer();
var pagehits = 0;
app.configure('dev', function() {