Emacs Websockets

1 · Shane Mulligan · June 10, 2020, 4 p.m.
Original article Emacs Websockets https://developer.mozilla.org/en-US/docs/Web/API/WebSockets%5FAPI websocket echo test https://websocket.org/echo.html 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 ;; load the websocket extension (require 'websocket) ;; open a new websocket and name it my-websocket (setq my-websocket (websocket-open "wss://echo.websocket.org" ;; provide a function to call when we receive a message from the server :on-message (lambda ( _websocket ; We ignore this fra...