forked from withkiki/review.ninja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.js
21 lines (16 loc) · 760 Bytes
/
app.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var http = require('http');
//////////////////////////////////////////////////////////////////////////////////////////////
// Initialize server
//////////////////////////////////////////////////////////////////////////////////////////////
var app = require('./src/server/app.js');
server = http.createServer(app).listen(config.server.localport).on('listening', function() {
});
//////////////////////////////////////////////////////////////////////////////////////////////
// Initialize websockets
//////////////////////////////////////////////////////////////////////////////////////////////
global.io = require('socket.io').listen(server).sockets;
io.on('connection', function(socket) {
socket.emit('init', {
message: 'Welcome!'
});
});