-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.js
102 lines (85 loc) · 2.59 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
'use strict';
const express = require('express');
const path = require('path');
//const favicon = require('serve-favicon');
const logger = require('morgan');
const cookieParser = require('cookie-parser');
const bodyParser = require('body-parser');
const cors = require('cors');
const http = require('http');
const app = express();
const server = http.createServer(app);
const io = require('socket.io').listen(server);
const mongoose = require('mongoose'),
db = mongoose.connection,
User = require('./server/models/user');
mongoose.Promise = global.Promise;
mongoose.connect('mongodb://localhost/draw');
db.on('error', console.error.bind(console, 'connection error:'));
db.once('open', () => {
console.log('Connected to DB');
});
app.use(cors());
//app.set('views', path.join(__dirname, 'views'));
app.set('view engine', 'ejs');
server.listen(8085, () => {
console.log('App listening at http://localhost:8085');
});
// uncomment after placing your favicon in /public
//app.use(favicon(path.join(__dirname, 'public', 'favicon.ico')));
app.use(logger('dev'));
app.use(bodyParser.json({limit: '10mb'}));
app.use(bodyParser.urlencoded({extended: false}));
app.use(cookieParser());
//app.use(express.static(path.join(__dirname, 'public')));
//Production
app.use(express.static('./build/'));
require('./server/routes')(app);
io.on('connection', (socket) => {
socket.emit('test', 'Connectedddd');
socket.on('drawClick', (data) => {
socket.broadcast.emit('draw', {
x: data.x,
y: data.y,
type: data.type,
brushSize: data.brushSize,
color: data.color,
prevx: data.prevx,
prevy: data.prevy
});
});
socket.on('clearCanvas', () => {
socket.broadcast.emit('clearCanvas');
});
socket.on('bgColorChange', (bgColor) => {
socket.broadcast.emit('bgColorChange', {bgColor});
});
});
// catch 404 and forward to error handler
app.use((req, res, next) => {
let err = new Error('Not Found: ' + req.originalUrl);
err.status = 404;
next(err);
});
// error handlers
// development error handler
// will print stacktrace
if (app.get('env') === 'development') {
app.use((err, req, res, next) => {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: err
});
});
}
// production error handler
// no stacktraces leaked to user
app.use((err, req, res, next) => {
res.status(err.status || 500);
res.render('error', {
message: err.message,
error: {}
});
});
module.exports = app;