Create a Simple Chat Application Using Socket.IO in Golang

A step-by-step guide to building a simple chat application using Socket.IO in Golang, helping you understand how real-time communication works in web applications.

This article will guide you through creating a simple chat application using Socket.IO in Golang. We will set up a server to handle WebSocket connections and allow users to send and receive messages in real-time.

Golang Code

package main

import (
    "fmt"
    "net/http"
    "github.com/googollee/go-socket.io"
)

func main() {
    // Create a socket server
    server, err := socketio.NewServer(nil)
    if err != nil {
        fmt.Println("Error initializing server:", err)
        return
    }

    // Handle connection events
    server.OnConnect("/", func(s socketio.Conn) error {
        fmt.Println("New user connected:", s.ID())
        return nil
    })

    // Handle chat message events
    server.OnEvent("/", "chat message", func(s socketio.Conn, msg string) {
        fmt.Println("Message received:", msg)
        // Broadcast message to all users
        server.BroadcastToRoom("/", "chat message", msg)
    })

    // Start the server
    http.Handle("/socket.io/", server)
    go server.Serve()
    fmt.Println("Server running at http://localhost:5000")
    if err := http.ListenAndServe(":5000", nil); err != nil {
        fmt.Println("Error starting server:", err)
    }
}

Detailed explanation:

  1. package main: Declare the main package of the application.
  2. import: Import necessary libraries, including net/http for the HTTP server and github.com/googollee/go-socket.io for Socket.IO.
  3. socketio.NewServer(nil): Create a new Socket.IO server.
  4. server.OnConnect: Register an event for user connections, printing the user's ID.
  5. server.OnEvent: Register an event for receiving messages from users, printing the message content and broadcasting it to all users.
  6. http.Handle: Associate the Socket.IO server with the path /socket.io/.
  7. go server.Serve(): Start the Socket.IO server in a goroutine.
  8. http.ListenAndServe(":5000", nil): Start the HTTP server on port 5000.

System Requirements:

  • Golang 1.15 or newer
  • go-socket.io library

How to install the libraries needed to run the Golang code above:

To install the go-socket.io library, run the following command in the terminal:

go get github.com/googollee/go-socket.io

Tips:

  • Make sure you have Golang installed and your development environment is properly configured.
  • Experiment with additional features such as room management and message history to enhance your application's capabilities.
Tags: Golang, Socket.IO


Related

How to DELETE data from a MySQL database using Golang

A guide on how to connect and delete data from a table in a MySQL database using the Golang programming language.
How to SELECT data from a MySQL database using Golang

A guide on how to use Golang to query data from a MySQL database using Prepared Statements with multiple parameters.
How to split a string in Golang using the SplitAfter function

A guide on how to use the `SplitAfter` function in Golang to split a string based on a specific character or substring. This article provides a detailed explanation of how the function works, along with examples.
How to Automatically Log in to a Website Using Selenium with Chrome in Golang

A guide on how to use Selenium in Golang to automatically log in to a website using the Chrome browser. This article provides specific code examples and detailed explanations of each step.
How to convert a Markdown string to HTML using Golang

A detailed guide on how to convert a Markdown string to HTML in Golang using the `blackfriday` library.
How to Split a String in Golang Using the Split function

This article explains how to use the `Split` function in Go (Golang) to break a string into smaller substrings based on a delimiter. It's a common operation in Go programming when dealing with strings.
How to pass Authentication Header Token when POSTing data to an API using Golang

This guide explains how to pass an Authentication Header Token when making a POST request to an API using Golang. It covers handling HTTP requests, adding a token to the Header for authentication, and sending data to an API.
Guide to Reading Excel Files Using Golang

A comprehensive guide on how to read content from Excel files (.xlsx, .xls) using Golang, utilizing the excelize library with step-by-step installation and illustrative examples.
Multithreading in Golang with Goroutine

A guide on how to handle multithreading in Golang using Goroutine, allowing efficient parallel processing and CPU optimization.
Slices in Golang: Usage and examples

This article explains how to work with slices in Golang, including how to declare, access, and manipulate slices—a flexible way to handle arrays more efficiently in Go.

main.add_cart_success