-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.js
More file actions
73 lines (63 loc) · 2.07 KB
/
server.js
File metadata and controls
73 lines (63 loc) · 2.07 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*jslint node:true */
/*globals */
'use strict';
var express = require('express'),
http = require('http'),
path = require('path'),
app = module.exports = express(),
server = require('http').createServer(app),
io = require('socket.io').listen(server),
AngularAppName = '',
scriptPaths = [];
// all environments
app.set('port', process.env.PORT || 8888);
app.set('views', __dirname + '/views');
app.set('view engine', 'jade');
app.use(express.favicon());
app.use(express.logger('dev'));
app.use(express.bodyParser());
app.use(express.methodOverride());
app.use(require('stylus').middleware(__dirname + '/public'));
app.use(express['static'](path.join(__dirname, 'public')));
app.use(app.router);
if ('production' === app.get('env')) {
AngularAppName = 'flatGames';
scriptPaths = ['/js/app.js', '/js/controllers.js', '/js/services.js', '/js/directives.js'];
} else {
app.use(express.errorHandler());
AngularAppName = 'flatGames';
scriptPaths = ['/js/lib/angular/angular-mocks.js', '/js/app.js', '/js/controllers.js', '/js/services.js', '/js/directives.js', '/test/e2e/app.js'];
}
// mongo
// var mongo = new Mongo('localhost', 27017);
// serve index and view partials
app.get('/', function (req, res) {
res.render('index', {
angularApp: AngularAppName,
scripts: scriptPaths
});
});
app.get('/partials/:name', function (req, res) {
var name = req.params.name;
res.render('partials/' + name);
});
require('./routes/api')(app);
// redirect all others to the index (HTML5 history) ??? needed? ???
app.get('*', function (req, res) {
res.render('index', {
angularApp: AngularAppName,
scripts: scriptPaths
});
});
// Socket.io Communication
require('./routes/socket')(io, app);
//io.sockets.on('connection', require('./routes/socket'));
server.listen(app.get('port'), function () {
console.log('Express server listening on port ' + app.get('port') + ' running in ' + app.get('env') + ' mode.');
});
/*app.get('/', function(req, res){
mongo.findAll(function (error, docs) {
res.send(docs);
});
});
*/