WebSocket

//crea conexion const socket = new websocket ('ws://localhost:8080'); //abre la conexion socket.addeventlistener('open', function(event){ socket.send('hello server!'); }); //escucha por mensajes socket.addeventlistener('message', function(event){ console.log('message from server', event.data); });
El objeto WebSocket provee la API para la creación y administración de una conexión WebSocket a un servidor, así como también para enviar y recibir datos en la conexión.

El constructor de WebSocket acepta un parámetro requerido y otro opcional.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.