-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserver.js
37 lines (25 loc) · 873 Bytes
/
server.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
var express = require('express');
var app = express();
var http = require('http').Server(app);
var io = require('socket.io')(http);
app.use(express.static('client/build'));
app.get('/', function (req, res) {
res.sendFile(`${__dirname}/client/build/index.html`);
});
io.on('connection', function(socket) {
socket.on('attack', (attackDetails) => {
io.sockets.emit('attack', attackDetails);
});
socket.on('broadcast', (broadcastDetails) => {
io.sockets.emit('broadcast', broadcastDetails);
});
socket.on('scryRequest', (scryRequestDetails) => {
io.sockets.emit('scryRequest', scryRequestDetails);
});
socket.on('scryTransmit', (scryTransmitDetails) => {
io.sockets.emit('scryTransmit', scryTransmitDetails);
});
});
var server = http.listen(3000, function () {
console.log('Wizards only on http://localhost:3000/, fools.');
});