blob: 296e1d29fa877672829d031039b8b29137536b7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
---
title: WebSockets
slug: Glossary/WebSockets
tags:
- Connection
- Glossary
- Infrastructure
- Networking
- Protocols
- Web
- WebSocket
translation_of: Glossary/WebSockets
---
<p><em>WebSocket </em>es un<em> </em> {{Glossary("protocolo")}} que permite establecer conexiones {{Glossary("TCP")}} entre el {{Glossary("Server", "servidor")}} y el cliente, permitiendo así el transporte de datos en cualquier momento.</p>
<p>Cualquier cliente o servidor de aplicaciones puede usar WebSockets, pero principalmente es usado por {{Glossary("Navegador", "browsers")}} y el servidor web. WebScoket permite enviar datos al cliente sin la necesidad de recibir ningún tipo de notificación, permitiendo la actualización dinámica del contenido.</p>
<h2 id="Saber_más">Saber más</h2>
<h3 id="Conocimiento_general" style="line-height: 24px;">Conocimiento general</h3>
<ul>
<li>{{Interwiki("wikipedia", "Websocket")}} en Wikipedia</li>
</ul>
<h3 id="Referencia_técnica">Referencia técnica</h3>
<ul>
<li><a href="/en-US/docs/Web/API/WebSocket">WebSocket reference on MDN</a></li>
</ul>
<h3 id="Aprende_sobre_WebSockets">Aprende sobre WebSockets</h3>
<ul>
<li><a href="/en-US/docs/WebSockets/Writing_WebSocket_client_applications">Writing WebSocket client applications</a></li>
<li><a href="/en-US/docs/WebSockets/Writing_WebSocket_servers">Writing WebSocket servers</a></li>
</ul>
|