forked from landonbar/todomvc-perf-comparison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
executable file
·41 lines (30 loc) · 956 Bytes
/
app.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
// Module dependencies.
var express = require('express'),
http = require('http'),
path = require('path')
;
var app = express();
// apply to all environments
app.set('port', process.env.PORT || 3080);
app.use(express.logger('dev'));
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(app.router);
app.use(function(req, res, next) {
req.headers['if-none-match'] = 'no-match-for-this';
next();
});
// setup static content directory
app.use(express.static(path.join(__dirname, 'public')));
// errors in development environment only
if ('development' == app.get('env')) {
app.use(express.errorHandler());
}
app.get('/',function(req, res){
res.redirect('/index.html');
//res.sendfile(__dirname + '/public/html/app.html');
});
// initialize express framework server
http.createServer(app).listen(app.get('port'), function(){
console.log('Express server listening on port ' + app.get('port'));
});