mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-30 16:11:27 +00:00
13 lines
210 B
JavaScript
13 lines
210 B
JavaScript
var socket = io("http://localhost:8000/");
|
|
|
|
socket.on("connect", function () {
|
|
console.log("Connected!");
|
|
});
|
|
|
|
// socket.on("reconnect", function () {
|
|
|
|
// });
|
|
|
|
// socket.on("disconnect", function () {
|
|
|
|
// });
|