Most WebSocket Examples in JavaScript are of nodejs in server side and web brawser in client side, and not that easy to move these client to a nodejs implementation. Besides, as most nodejs WebSocket client are not compatible with native brawser WebSocket client, few examples can work well both in nodejs and web brawser.
This repository contains a list of examples to illustrate the implementation of WebSocket protocal in nodejs, both pure TypeScript or with frameworks like Express or Nestjs.
Each example folder contains independent example, with subfolders to distinguish server and client.
WebSocket is "To enable web applications to maintain bidirectional communications with server-side processes", there are official implementation and unofficial ones.
The top three popular websocket libraries on npmjs are ws、socket.io、and websocket( There are also other implementations like WebSocket-Node
or µWebSockets
). We use both ws and socket.io in this repository because they each has there advantages and disadvantages.
The ws
library is the most popular one and it is fully compatible with the Official WebSocket
protocal, however, if you want to use ws
as client in nodejs, a wrapper like isomorphic-ws is necessary, which is also used in the examples.
The socket.io
library has its own features like load balance and auto-reconnection functions although it is not compatible with the Official WebSocket
protocal and you need to install it both in server side and client side. In client side, you need socket.io-client library instead of socket.io
.
The examples are used to illustrate implementations of websocket, thus no complex functions will not be apllied here. The basic functions of each example contains following functions (unless the library has no relative function),and some of the example code are from original library examples:
- A websocket server in pure nodejs or with a http framework
- Two websocket client in brawser and in nodejs (with or without framework)
- Start both server and client side(open the html file in a web brawser for the brawser client), the client will try to connect to the server
- When the client connect to the Server, the server send an
message
event withhello client
to the client - When the client receives the
message
event, it send anresponse
event withresponse + randmon number
to the server - When the Server receives the
response
event, it send anend
event with the content it received. - When the Client receives the
end
event, it closes the connection after 3s delay. - Both server and client print every event content it received in the console.
- Both server and client print the connect and disconnect status change in the console.
- Both server and client print error messages in the console.
This example contains WebSocket server and client example implemented with nodejs. The server folder contains a normal server ,install and run npm run start
to start it. There is another ws
server wrapped in a httpServer
in the server folder named server2.ts
, run npm run start2
to start it, to make the example simple, the two servers run on the same port 18000
(the http server listens port 3000).
client
folder contains:
- A pure brawser client
client.html
, open with a brawser to start - A
ws
client with native ws library, runnpm run start
- A
ws
client compatible with native WebSocket protocol, runnpm run start2
Note:
The function format are different from ws
and native WebSocket, in ws
library:
ws.on('message', (message)=>{
console.log('received: %s', message);
});
In native WebSocket compatible format:
ws.onmessage=(message)=>{
console.log('received: %s', message);
}
Besides, the message
in the two protocols are also different, in the ws
library it is WebSocket.data
while in the native WebSocket protocol is WebSocket.MessageEvent
, the latter structure is similar as below as the former contains only the data
part.
MessageEvent {
target: [WebSocket],
type: 'message',
data: '{"event":"end","data":"response: 0.3416359669492526"}'
}
This example contains socket.io
server and client implemented with nodejs
. Install and npm run start
in server and client folder to start each. There is another socket.io
server wrapped in a httpServer
in the server folder named server2.ts
, run npm run start2
to start it, to make the example simple, the two servers run on the same port 18000
There is also a index.html
file which implemented a brawser client:
- As socket.io is not compatible with native WebSocket, there is a
socket.io.js
file (asocket.io.js.map
may also needed, both files can be found onsocket.io
libraryclient-dist
folder) which is replied by the html file. - Using the obsolete
socket.io.js v2
file to connectv3
server may cause400 error
. - As
socket.io v3
usesCORS
, simply open theindex.html
file in a brawser cannot visit the server. We installedhttp-server
here (which uses index.html as default page), and config theCORS
option in the server (see below), runnpm run startweb
and visithttp://localhost:8081
in a brawser to connect to the server.
NOTICE:
This repository uses socket.io v3
and not compatible with socket.io
. See Socket.io Document for the detailed differences between the two version. Some import feature are as follows:
- As
socket.io v3
is rewritten byTypeScript
, there is no need to import@types/socket.io
or@types/socket.io-client
library to usesocket.io
inTypeSctipt
, import the above libraries in your code may cause mistake. CORS
needs to be explicitly announced as follows:
const io = require("socket.io")(httpServer, {
cors: {
origin: "https://example.com",
methods: ["GET", "POST"]
}
});
socket.io
support autoreconnection mechanism which is enabled by default, if you want to test the function, just comment thesetTimeout
function in client, stop and start the server again, the client will reconnect to the server automatically.socket.io
support message acknowledgement mechanism, theresponse
event in this example added it, the server will give an acknowledgement message through callback function when it receives a response message.- The content of
socket.io
event are highly customised ,you need to decide and encode/decode the content and avoid possible mistakes.
This example contains both WebSocket server and client implementation with popular Nestjs
framework using ws
library. As Nestjs is a server framework itself, a html
file is added with nestjs serve Static function and MVC service. the communication interfaces in this example is similar to 1. nodejs ws example
, so the servers and clients can connect with each other. However, for test purpose, the functions a modifed in this example so as to keep the client keep connected with the server until there is an order to terminate:
- The server will not send an
end
message when it received aresponse
message, instead, it sends a sameresponse
message to the client. - A
response
message listener is added to the client, it will print the message it received. - A
terminate
message will be send from the client trigged by a http requestsendTerminate
, the server will send the oldend
message when it received theterminate
message.
The client httpServer works on port 3001, two apis were added to update data and terminate connection
-Get http://localhost:3001/ws-client/getdata
to send response
and update the data it received.
-Get http://localhost:3001/ws-client/sendTerminate
用to send terminate
message,This will also terminate the client app, you need restart it again
A client.http
file is created in client folder to test http requests, which can be used by vscode
plugin REST Client
.
no cors
configuration when use ws
library.
To Use:
- In the
server
andclient
runnpm run start
to start them and see the result. - In a brawser visit
http://localhost:3001
, to see and update data in console and in the page. - To work with
1. nodejs ws example
servers and clients, you need to pay attention to the API difference.
This example contains both WebSocket server and client implementation with popular Nestjs
framework using socketio
library. The program structure and API interface are exactly the same as example 3. Except for some important NOTES:
- As
socket.io
version 3.x and 2.x are incompatible, they cannot work together, which means the server and client shall of the same major version. Nestjs
built-insocket.io
library@nestjs/platform-io
was written with socket.io version 2, so it is incampatible with a version 3 client.- The
Nestjs
author promised to updatesocket-io
on nestjs 8 ,however, if you want to usesocket.io v3
in nestjs, a temporary approach is introduced in nestjs issue 5676, use thesocket-io.adapter
in the issue (thename
line under cookie shall be removed) instead of the official one. This is the way we used here. - You may also downgrade the client version to v2.x ,however, we did not try that way here.
- SO FAR, the server and client works well in this example, but if you want the server in this example works together with the client in example 2, there is still a problem, perhaps due to the
@WebSocketGateway()
decorator mechanism, you will not visit the server if theport
parameter (for example@WebSocketGateway(18000)
) is different from the server http port (for example app.listen(3000)) even if cors is enabled. You shold leave the@WebSocketGateway()
decorator blank and use the client to visit the same http port.