/kiss_websocket

SandBox for WebSocket clients and server

Primary LanguageTypeScript

Notes on kiss_websocket

Presentation

kiss_websocket is a small sandbox project to play with WebSocket.

It contains the client side and the server side.

Topology

Servers

This repo contains one WebSocket server in the directory srv. It is implemented with nodejs and the npm package ws

Clients

This repo contains three clients that consumes the WebSocket service:

  • web : it uses the WebSocket service from the browser (WebSocket_API)
  • client_js : it uses the WebSocket service from a nodejs-application based on the package ws
  • client_py : it uses the WebSocket service from a python-application based on the package websockets