-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
51 lines (40 loc) · 1.27 KB
/
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
42
43
44
45
46
47
48
49
50
51
const express = require('express');
const app = express()
const server = require('http').createServer(app)
const io = require('socket.io')(server)
const mongoose = require('mongoose')
mongoose.Promise = global.Promise
if ( process.env.NODE_ENV !== 'test') {
mongoose.connect('mongodb://localhost/checkers')
// mongoose.connect(`mongodb://temp:[email protected]:31151/react-checkers-server`)
.then( () => true )
.catch( (err) => { console.log(err)})
}
const bodyParser = require('body-parser')
const routes = require('./routes/routes')
app.use(function(req, res, next) {
res.header("Access-Control-Allow-Origin", "*")
res.header("Access-Control-Allow-Headers", "Origin, X-Requested-With, Content-Type, Accept")
next()
})
app.use( bodyParser.json() )
routes( app )
app.use( (err, req, res, next) => {
console.log(err.message)
res.status(422).send({error: err.message})
})
io.on('connection', function(socket){
socket.on('move', function( board ){
io.emit('move', board )
})
socket.on('resign', function( resignation ){
io.emit('resign', resignation )
})
socket.on('invite', function( invite ){
io.emit('invite', invite )
})
socket.on('acceptedInvite', function( invite ){
io.emit('acceptedInvite', invite )
})
})
module.exports = server