WebSockets

Plan

  • Web sockets as technology
  • WebSocket js object
  • Example

Web Sockets protocol

  • Bidirectional communication
  • Long-lasting connection
  • ws: //    wss: //
 

WebSocket object

// Create WebSocket connection.
const socket = new WebSocket('ws://localhost:8080');

Properties

Methods

Example

Useful links

WebSockets

By Denis Bogush

WebSockets

  • 110