Skip to content

WebSockets

hydrogen602 edited this page Apr 9, 2019 · 3 revisions

Notes

Welp
Many packages do not work. Right now Autobahn with Twisted is used, and it works so far.
Example server code
Autobahn Docs

Client Side

Example Code: ws = new WebSocket('ws://localhost:5005') ws.onmessage = function (event) { console.log(event.data) }

TODO

Address right now uses localhost, this must somehow be replaced!

Clone this wiki locally