Saltar al contenido

js websocket mantener conexión código abierto ejemplo

Te sugerimos que revises esta resolución en un ambiente controlado antes de pasarlo a producción, saludos.

Ejemplo 1: código de ejemplo de javascript websocket

var Socket = new WebSocket('ws://' + window.location.hostname + ':81/'); // The '81' here is the Port where the WebSocket server will communicate with
// The instance of the WebSocket() class (i.e. Socket here), must need to be globally defined

Socket.send("pass your data here, and it'll be String"); // This method one can call locally

Ejemplo 2: js se conecta a websocket

var exampleSocket = new WebSocket("wss://www.example.com/socketserver", "protocolOne");

Ejemplo 3: socketio conectar websockets

var socket = io('http://localhost');
socket.emit('hello', 'there');

Agradecemos que quieras añadir valor a nuestra información cooperando tu experiencia en las aclaraciones.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *