Added the reason to use socket.io over pure websockets (#18816)
This commit is contained in:
@ -4,7 +4,7 @@ title: Socket.io
|
||||
|
||||
## Socket.io
|
||||
|
||||
[Socket.io](https://socket.io/) is a Node.js library made to help make real-time communication between computers possible. To ensure this Socket.io uses WebSockets to establish a connection between the client's browser and the server. This library uses [Engine.IO](https://github.com/socketio/engine.io) for building the connection.
|
||||
[Socket.io](https://socket.io/) is a Node.js library made to help make real-time communication between computers possible. To ensure this Socket.io uses a combination of WebSockets and Polling to establish a connection between the client's browser and the server. This allows it to work on older browsers that may not support pure websockets. This library uses [Engine.IO](https://github.com/socketio/engine.io) for building the connection.
|
||||
|
||||
### Demos
|
||||
|
||||
@ -27,4 +27,4 @@ A [get started](https://socket.io/get-started/chat/) guide can also be found on
|
||||
|
||||
More information about Socket.io and it's documentation can be found at:
|
||||
- [Socket.io](https://socket.io/)
|
||||
- [Socket.io Documentation](https://socket.io/docs/)
|
||||
- [Socket.io Documentation](https://socket.io/docs/)
|
||||
|
Reference in New Issue
Block a user