-
Notifications
You must be signed in to change notification settings - Fork 1
/
conector.js
24 lines (23 loc) · 847 Bytes
/
conector.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
socket = io.connect('http://' + window.location.hostname + ':' + window.location.port + '/pasarela');
socket.on('error', function (razon) {
console.error('No se pudo conectar', razon);
});
socket.on('connect', function () {
console.log("Sesión: " + this.socket.sessionid);
console.log("Conectado con éxito - 200");
socket.emit('identificar', 'webmaster', function (data) {
console.log(data ? data : 'FAIL');
});
socket.on('notificar', function (data) {
notify(data.titulo, data.mensaje, {icon: '/img/demo/icon.png', system: true});
});
socket.on('comunicador', function (data) {
console.dir(data);
});
socket.on('proceso', function (data) {
console.log(data);
});
socket.on('disconnect', function () {
console.log("Usted se ha desconectado");
});
});