Introduction to WebSockets. Creating a Node.js server and using WebSocket API in the browser

Uncategorized

WebSocket is a protocol that makes two-way communication in real-time between the user and the server possible. A common use cases are chats and online multiplayer games. Today we cover implementing it both on frontend and backend. Let’s go!

Explaining WebSockets

WebSocket is a different protocol than HTTP. Despite that, to establish a connection, the client sends a WebSocket handshake request which is HTTP call. Let’s look into the request call:

This request contains the Connection: Upgrade and Upgrade: websocket headers that indicate that the client wishes to establish a WebSocket connection. The same headers can be found in the server response. You can see here that WebSocket URLs use the ws:// scheme. There is also wss:// for the WebSocket Secure connections which is encrypted in a similar manner than HTTPS and you should always use it if possible. Once the connection is established, the communication is continued in a two-way manner, which is different than HTTP.

Preparing a server able to create a WebSocket connection

While there are quite a few libraries that help you handle the WebSocket connections. One of the ways is to use ws, which is a backend only library. Another one is Socket.io, which covers both backend and frontend needs. Since we want to walk through the native WebSockets API, today we will use ws. Let’s prepare a simple server that will enable us to make a WebSocket connection.

Through the   constructor we create an instance of a WebSocket server. By passing   we bind it to the port 8080.

The WebSocket.Server.prototype inherits from the EventEmitter, which is one of the native prototypes provided in Node.js. Thanks to that we can call the on function on it and listen to the connection event for upcoming connections. The connection event is emitted when the handshake between the client and the server is complete.

If you would like to know more about prototypes, check out Prototype. The big bro behind ES6 class

When that happens, the callback is called and its first argument is the socket, an instance of the WebSocket.prototype. It inherits from the EventEmitter too. Through it, you can listen to any upcoming messages from the clients through the message event.

Another crucial line here is the usage of the send function. With it, you can send data to the clients. It can be of any type, the object included.

If you prefer using Expressyou can surely do that. Instead of just sending a port to the WebSocket.Server constructor, you can pass your server there:

When you run the script, the server starts listening for input. Let’s provide it with some.

Sending messages from the client

In all modern browsers, we have a built-in API to handle WebSockets. If you are worried about older browsers, you might give the already mentioned Socket.io a try, because it contains a polyfill for such cases.

Here is a basic example:

We pass an URL to which to connect to the WebSocket constructor and receive an instance of the WebSocket object. As you can see, it begins with ws:// – this prefix indicates a WebSocket connection.

When you run   you will notice that WebSockets inherits from EventTarget. Thanks to that, you can listen to events. One of them is the open event that fires when the connection is opened. Another important one is the message event that happens when the message is received from the server.

When you call the send function, the message is sent to the server. An important thing to notice is that it can’t be of just any type. Here you can find the list of all possible types.

Having all that knowledge is almost enough to build a simple chat application. The frontend part is pretty easy:

Every time a user clicks a button to send a message you pass it to the server along with his username. When there is an incoming message, you display it in any way you see fit.

On the backend side, there is a small catch. You need to send the message to all connected clients. You can do that thanks to the fact that all clients are being tracked in the server.clients array:

And you’re done! Simple, isn’t it?

Summary

The article covered the very basics of WebSockets. It includes an explanation of what they are, how to create a simple server that handles WebSocket connections and how to connect with it on the frontend. To do that we used the ws library on the backend and the WebSocket API in the browser. This is enough to build your own simple live chat, which is a good way to practice the knowledge contained here. Good luck!

Subscribe
Notify of
guest
3 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Jan
Jan
4 years ago

And how you keep it running? My server dies everytime I close CMD 🙁

yoko
yoko
4 years ago
Reply to  Jan

use PM2, it is a process manager for nodejs enviroemnt

Len
Len
4 years ago
Reply to  Jan

Tmux works too!