WebSocket
WebSocket
The WebSocket Protocol
- WebSockets allow for full-duplex communication.
- WebSocket is a seperate protocol from HTTP
- Persistent connection between client and server.
1 | npm i socket.io |
Socket.io can be used on its own or with Express. Since the chat application will be serving up client-sied assets, both Express and Socket.io will get set up.
1 | const path = require('path') |
The server above uses io.on
which is provided by Socket.io. on
allows the server to listen for an event and respond to it. In the example above, the server listens for connection
which allows it to run some code when a client connects to the WebSocket server.
Socket.io on the Client
Socket.io is also used on the client to connect to the server. Socket.io automatically serves up /socket.io/socket.io.js
which contains the client-side code. The script tags below load in the client-side library followed by a custom Javascript file.
1 | <script src="/socket.io/socket.io.js"></script> |
Your client-side JavaScript can then connect to the Socket.io server by calling io
. io
is provided by the client-side Socket.io library. Calling this function will set up the connection, and it’ll cause the server’s connection
event handler to run.
1 | io() |
Ref : The Complete Node.js Dev Course by Andrew Mead