Create a Simple Chat Application Using Socket.IO in C++

A guide on how to create a simple chat application using C++ with Socket.IO, helping you to understand more about network programming and real-time communication.

This article will guide you through building a basic chat application using C++ combined with Socket.IO. We will create a server using Socket.IO and a client that can send and receive messages in real time.

C++ Code

#include <iostream>
#include <uWS/uWS.h>
#include <string>
#include <json.hpp>

using json = nlohmann::json;

int main() {
    uWS::Hub h;

    // When a client connects
    h.onConnection([](uWS::WebSocket<uWS::SERVER>* ws, uWS::HttpRequest req) {
        std::cout << "Client connected!" << std::endl;
    });

    // When a message is received from a client
    h.onMessage([](uWS::WebSocket<uWS::SERVER>* ws, char* message, size_t length, uWS::OpCode opCode) {
        // Convert message to string
        std::string msg = std::string(message, length);
        std::cout << "Received message: " << msg << std::endl;

        // Echo message back to all clients
        ws->send(msg.c_str(), msg.length(), opCode);
    });

    // When a client disconnects
    h.onDisconnection([](uWS::WebSocket<uWS::SERVER>* ws, int code, char* message, size_t length) {
        std::cout << "Client disconnected!" << std::endl;
    });

    // Start the server on port 3000
    if (h.listen(3000)) {
        std::cout << "Server started on port 3000" << std::endl;
    }
    h.run();
    return 0;
}

Detailed explanation:

  1. #include <uWS/uWS.h>: Including the uWebSockets library to create a WebSocket server.
  2. using json = nlohmann::json;: Using a JSON library to handle JSON data (if needed).
  3. h.onConnection(...): Event handler for when a client connects, notifying the connection.
  4. h.onMessage(...): Event handler for incoming messages from clients, printing the message and sending it back to all clients.
  5. h.onDisconnection(...): Event handler for when a client disconnects, notifying the disconnection.
  6. h.listen(3000): Starting the server on port 3000 and checking for success.
  7. h.run(): Starting the event processing loop.

System Requirements:

  • C++17 or newer
  • uWebSockets and nlohmann/json libraries

How to install the libraries needed to run the C++ code above:

  1. Install uWebSockets: Follow the guide at uWebSockets GitHub.
  2. Install the JSON library: You can use CMake or simply add the json.hpp file to your project.

Tips:

  • Experiment with extending features such as chat history or adding notifications for online/offline users.
  • Ensure to use encryption for sensitive messages.
Tags: C++, Socket.IO


Related

Convert Unicode Accented Characters to Unaccented in C++

A detailed guide on converting Unicode accented characters to unaccented characters in C++ using the `` library. This article helps you handle Vietnamese text more effectively.
All Methods for String Concatenation in C++

This article compiles all methods for string concatenation in C++, helping you understand the different methods from basic to advanced, including using the `+` operator, the `append()` function, and methods from the `string` library.
Updating Multiple Columns in MySQL Using C++

A detailed guide on updating multiple columns in MySQL using C++ with Prepared Statements. This article helps you understand how to use Prepared Statements to update data securely and efficiently.
Example of Strategy Pattern in C++

This article introduces the Strategy Pattern in C++, explaining how it works and providing a specific illustrative example to help you better understand this design pattern in object-oriented programming.
Example of Factory Pattern in C++

This article presents the Factory Pattern in C++, a popular design pattern that helps create objects without specifying the exact class of the object. This increases flexibility and extensibility in the codebase.
Example of Singleton Pattern in C++

This article introduces the Singleton Pattern in C++, including its implementation and application in object management. The Singleton Pattern ensures that a class has only one instance and provides a global access point to it.
How to Write Data to an Excel File Using C++

A detailed guide on writing data to an Excel file using C++ and the openxlsx library. This article provides the necessary steps to create and write data to an Excel file easily.
How to pass Authentication Header Token when POSTing data to API using Node.js

A step-by-step guide on how to pass an Authentication Token in the header while POSTing data to an API using Node.js. The article demonstrates how to use the `axios` or `http` package to perform authenticated HTTP requests.
Preventing XSS (Cross-site Scripting) in C++

A guide on techniques to prevent XSS (Cross-site Scripting) in C++ applications, helping to protect web applications from attacks by controlling and encoding user input. This article provides methods and illustrative examples to enhance security.
How to automatically log into a website using Selenium with Chrome in C++

A guide on using Selenium with ChromeDriver in C++ to automatically log into a website. The article explains how to set up Selenium and ChromeDriver and the steps to log in to a specific website.

main.add_cart_success