This repository has been archived on 2022-11-26. You can view files and clone it, but cannot push or open issues or pull requests.
teemant-old/public/js/main.js

10 lines
176 B
JavaScript
Raw Normal View History

2016-09-22 15:41:37 +00:00
window.onload = function() {
var messages = [];
var socket = io.connect('http://localhost:8080');
socket.on('connect', function (data) {
alert("socketio works!")
});
}