flocore-node/app/views/sockets/main.js
2014-01-13 18:13:59 -03:00

15 lines
339 B
JavaScript

'use strict';
var Transaction = require('../../models/Transaction');
module.exports = function(app, io) {
io.set('log level', 1); // reduce logging
io.sockets.on('connection', function(socket) {
socket.emit('tx', Transaction.findOne());
socket.on('my other event', function(data) {
console.log(data);
});
});
};