Create a Simple Chat Application Using Socket.IO in Node.js

A detailed guide on how to create a simple chat application using Socket.IO in Node.js, allowing users to send and receive messages in real-time.

This article will guide you through creating a simple chat application using Socket.IO. You will learn how to set up a Node.js server, create a user interface using HTML, and utilize Socket.IO to handle real-time connections and messaging.

Node.js Code

server.js

const express = require('express');
const http = require('http');
const socketIo = require('socket.io');

const app = express();
const server = http.createServer(app);
const io = socketIo(server);

app.get('/', (req, res) => {
    res.sendFile(__dirname + '/index.html');
});

io.on('connection', (socket) => {
    console.log('A user connected');

    socket.on('chat message', (msg) => {
        io.emit('chat message', msg);
    });

    socket.on('disconnect', () => {
        console.log('User disconnected');
    });
});

server.listen(3000, () => {
    console.log('Server is running on http://localhost:3000');
});

index.html

<!DOCTYPE html>
<html>
<head>
    <title>Chat App</title>
    <script src="/socket.io/socket.io.js"></script>
    <script>
        const socket = io();

        function sendMessage() {
            const msg = document.getElementById('message').value;
            socket.emit('chat message', msg);
            document.getElementById('message').value = '';
            return false; // Prevent page reload
        }

        socket.on('chat message', function(msg) {
            const item = document.createElement('li');
            item.textContent = msg;
            document.getElementById('messages').appendChild(item);
        });
    </script>
</head>
<body>
    <ul id="messages"></ul>
    <form onsubmit="return sendMessage();">
        <input id="message" autocomplete="off" /><button>Send</button>
    </form>
</body>
</html>

Detailed explanation:

server.js

  1. import modules: Import necessary modules (express, http, socket.io).
  2. create server: Create the server and connect Socket.IO.
  3. setup routes: Set up a route for the application to return the index.html file when accessing the main page.
  4. handle connections: When a user connects, log a message and listen for the chat message event to broadcast messages to all users.
  5. start server: Start the server on port 3000.

index.html

  1. load socket.io: Load the Socket.IO library from the server.
  2. send message function: The sendMessage function sends a message when the user clicks the send button.
  3. receive messages: When a message is received from the server, create a new list item and append it to the message list.

System Requirements:

  • Node.js version 12.x or higher
  • NPM (Node Package Manager)

How to install the libraries needed to run the Node.js code above:

  1. Create a new folder and navigate to it.
  2. Run the following command to initialize a Node.js project:
    npm init -y
    
  3. Install the necessary libraries:
    npm install express socket.io
    

Tips:

  • Practice with Socket.IO to better understand how real-time communication works.
  • You can extend the application by adding features such as notifications when users connect or disconnect, and saving chat history.


Related

How to convert a Markdown string to HTML using Node.js

A detailed guide on how to convert a Markdown string to HTML in Node.js using the `marked` library.
JSON Web Token (JWT) Authentication in Node.js

This article provides a guide on how to use JSON Web Tokens (JWT) for user authentication in a Node.js application. JWT is a secure and popular way to protect APIs by transmitting user authentication information between the server and the client.
Guide to creating a multi-image upload form with Node.js

A step-by-step guide on how to create a multi-image upload form in Node.js using the `Multer` library for file handling and `Express` for server creation.
How to UPDATE data in a MySQL database using Node.js

A guide on how to use Prepared Statements in Node.js to update data in a MySQL database table safely and effectively.
Guide to Reading Excel Files Using Node.js

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using Node.js, utilizing the xlsx library with step-by-step installation and illustrative examples.
How to SELECT data from a MySQL database using Node.js

A guide on how to use Prepared Statements in Node.js to query data from a MySQL database with multiple parameters safely and effectively.
Guide to speeding up Node.js applications with ThreadPool

A comprehensive guide on using ThreadPool to speed up Node.js applications, enhancing performance and multitasking capabilities. The article covers how to configure and use ThreadPool in Node.js.
How to DELETE data from a MySQL database using Node.js

A guide on how to use Prepared Statements in Node.js to delete data from a table in a MySQL database safely and effectively.  
How to INSERT data into a MySQL database using Node.js

A guide on how to use Prepared Statements in Node.js to insert data into a table in a MySQL database safely and effectively with multiple parameters.
Using Selenium in Node.js to send JavaScript code to a website on Chrome

A guide on how to use Selenium in Node.js to automate sending JavaScript code to a web page in the Chrome browser. This article will walk you through the installation and execution steps.

main.add_cart_success