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

A detailed guide on how to create a simple chat application using Socket.IO in C#, helping you understand real-time communication and build interactive applications.

This article will guide you through creating a simple chat application using C# and Socket.IO to establish a connection between the server and client. We will set up a simple server and a web client to send and receive messages.

C# Code

Server (C#)

using System;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.DependencyInjection;
using SocketIO.Server;

namespace ChatApp
{
    public class Program
    {
        public static void Main(string[] args)
        {
            CreateHostBuilder(args).Build().Run();
        }

        public static IHostBuilder CreateHostBuilder(string[] args) =>
            Host.CreateDefaultBuilder(args)
                .ConfigureWebHostDefaults(webBuilder =>
                {
                    webBuilder.UseStartup<Startup>();
                });
    }

    public class Startup
    {
        public void ConfigureServices(IServiceCollection services)
        {
            services.AddSocketIOServer();
        }

        public void Configure(IApplicationBuilder app)
        {
            app.UseSocketIOServer();

            app.Map("/", async context =>
            {
                context.Response.ContentType = "text/html";
                await context.Response.WriteAsync("<h1>Welcome to Chat App</h1>");
            });
        }
    }
}

Client (HTML + Socket.IO)

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Chat App</title>
    <script src="https://cdn.socket.io/4.0.0/socket.io.min.js"></script>
</head>
<body>
    <h1>Chat App</h1>
    <input id="message" autocomplete="off" />
    <button onclick="sendMessage()">Send</button>
    <ul id="messages"></ul>

    <script>
        const socket = io();

        socket.on('chat message', function(msg) {
            const item = document.createElement('li');
            item.textContent = msg;
            document.getElementById('messages').appendChild(item);
        });

        function sendMessage() {
            const messageInput = document.getElementById('message');
            const message = messageInput.value;
            socket.emit('chat message', message);
            messageInput.value = '';
        }
    </script>
</body>
</html>

Detailed explanation:

  1. Server (C#):

    • Program class: Starts the ASP.NET Core application.
    • Startup class: Sets up services for Socket.IO and configures middleware.
    • ConfigureServices: Registers the Socket.IO service.
    • Configure: Sets up the root path for the application and sends a response when accessed.
  2. Client (HTML + Socket.IO):

    • Creates a simple interface for the chat application.
    • Uses Socket.IO to connect to the server.
    • Handles events for receiving messages and sending messages.

System Requirements:

  • C# 5.0 or newer
  • .NET Core 3.1 or newer
  • Socket.IO library for .NET

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

  1. Create a new ASP.NET Core project.
  2. Install the Socket.IO library via NuGet:
    dotnet add package SocketIoClientDotNet
    

Tips:

  • Consider adding features such as user authentication and message history storage to enhance the application.
  • Experiment with extended features like sound notifications or user presence alerts.
Tags: C#, Socket.IO


Related

How to INSERT data into a MySQL database using C#

A guide on how to use Prepared Statements in C# to insert data into a table in a MySQL database safely and effectively.
How to POST Data to an API using C#

A guide on how to send data to an API using the POST method in C# with the HttpClient class, enabling you to easily interact with APIs.
How to UPDATE data in a MySQL database using C#

A guide on how to use Prepared Statements in C# to update data in a MySQL table safely and efficiently with multiple parameters.
Guide to Reading Excel Files Using C#

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using C#, utilizing the EPPlus library with step-by-step installation and illustrative examples.
Common Functions Used with Selenium Chrome in C#

This article lists and describes common functions used when working with Selenium Chrome in C#. These functions help automate tasks in the Chrome browser effectively.
JSON Web Token Authentication with C#

A guide on how to implement JSON Web Token (JWT) authentication in C#. This article will show how to create, sign, and validate JWTs to secure APIs and authenticate users.
Convert markdown string to HTML using C#

A guide on how to convert a markdown string into HTML in C# using the MarkdownSharp library.
How to automatically log into a website using Selenium with Chrome in C#

A guide on how to use Selenium in C# to automatically log into a website. This article will use the Chrome browser and outline step-by-step how to automate the login process.
How to convert Unicode characters with diacritics to non-diacritics in C#

A detailed guide on how to convert Unicode characters with Vietnamese diacritics into non-diacritic characters in C#.
How to Write Data to Excel File in C#

A detailed guide on how to write data to an Excel file in C# using the EPPlus library, making it easy to store and manage data in Excel spreadsheets.

main.add_cart_success