Add basic socket.io and notification functionality

This commit is contained in:
2016-12-22 17:40:05 -07:00
parent 8a6d3c0f11
commit 14644ee21b
3 changed files with 48 additions and 14 deletions
+30 -12
View File
@@ -4,27 +4,45 @@ const bodyParser = require('body-parser');
const app = express();
const host = 'http://localhost';
const host = 'http://0.0.0.0';
const port = 3000;
app.use(bodyParser.urlencoded({ extended: false }));
app.use('/static', express.static(path.join(__dirname, 'dist')));
app.use('/assets', express.static(path.join(__dirname, 'assets')));
app.get('/', (req, res) => {
res.sendFile(path.join(__dirname, 'index.html'));
app.get('/*', (req, res) => {
res.sendFile(path.join(__dirname, 'index.html'));
});
app.post('*', (req, res) => {
console.log("to: " + req.path);
console.log(Object.keys(req.body)[0]);
res.end();
let id = req.path.substring(1);
let message = Object.keys(req.body)[0];
console.log("to: " + id);
console.log(message);
io.in(id).emit('message', message);
res.end();
});
app.listen(port, 'localhost', (err) => {
if (err) {
console.log(err);
return;
}
console.info('==> Listening on port %s. Open up %s:%s/ in your browser.', port, host, port);
const server = app.listen(port, 'localhost', (err) => {
if (err) {
console.log(err);
return;
}
console.info('==> Listening on port %s. Open up %s:%s/ in your browser.', port, host, port);
});
const io = require('socket.io').listen(server);
io.on('connection', (socket) => {
console.log("new connection!");
socket.on('room', (room) => {
console.log("telling it to join room.");
socket.join(room);
});
});