HTML Refresher and Detailed Study - Part 6
Last updated on 5 May 2026 Post series: Part 1 , Prev Part (5) Contents WebSockets Basic Exposure MDN docs for WebSockets is too complex WS/WSS are protocols but use a hack to piggyback over HTTP protocol for initial handshake/setup After HTTP piggyback handshake, WebSocket connection is somewhat similar to BSD TCP socket connection WebSocket communication is called real-time by Web devs Technical precision wise, WebSockets are 'soft real-time' and not 'hard real-time' 'real-time' terminology drift between early 2000s and now Plain JS (soft) real-time data visualization app using Web Sockets, Canvas API and JSON data Performance aspects of Canvas API draw functions including specific case of Windows 11 Short overview of WebGL Implementation of 'high-performance live dashboard' WebSockets, Canvas and JSON plain JS app Server-Sent Events vs. WebSockets for Live Telemetry Dashboard app Using Two-wa...