Implementing simple chat room dialogue based on websocket

Implementing simple chat room dialogue based on websocket

This article shares the specific code for implementing a simple chat room conversation using websocket for your reference. The specific content is as follows

First, build a node environment and write the following code in app.js

npm install socket.io-client

Socket is a high-performance server framework. Developers can develop their own network applications, such as RPC services, chat room servers, mobile game servers, etc., by implementing one or two interfaces.

npm install http-server

Generally, server services are provided. Parameters can specify ports, addresses, etc. For example, to start a service at port 8888, the command is: http-server src -p 8888

npm install koa

Koa implements a very expressive HTTP middleware framework through node.js, striving to make web application development and API usage more pleasant. Koa's middleware is executed in the stack in the order in which it is encoded, allowing you to perform operations and pass requests downward (downstream), then filter and return responses in reverse order (upstream).

Implementation Code

// Introduce dependencies const koa = require("koa")
// Initialize koa
const app = new koa()
// Enable http 
var server = require("http").createServer(app.callback())
// Initialize the socket
const io = require("socket.io")(server, { cors: true })
// Listen io.on('connection', (socket) => {
  // Actively send messages to the client setTimeout(() => {
    // Trigger a custom event through the io object method emit and send a message to the client io.emit('chat message', 'What do you want to say?')
  }, 1000)

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

  // Receive the client's message on the server // Listen to the event through the on method. When the client sends a message, the event will be triggered and the message sent by the client can be received socket.on('chat message', (msg) => {
    console.log(msg)
    // msg is the message sent by the client // Sending a message to the client is emit
    setTimeout(() => {
      msg = msg.replace("you", "me").replace("?", "").replace("?", "!")
      // Trigger event to send the processed message to the client io.emit('chat message', msg)
    }, 500)
  })
})
server.listen(5522,()=>{
  console.log('socket service is enabled, port number is 5522')
});

Call this service

import { io } from 'socket.io-client'
cteated(){
    // 1. Create a connection that can be customized this.socket = io('ws://localhost:5522')
     // 2. Establish a connection this.socket.on('connect', () => {
        console.log('Connection established successfully')
    })
    // 3. Listen for messages and return this.socket.on('chat message', msg => {
        console.log('Message returned by the service', msg)
    })
}

This will allow you to have a simple AI conversation.

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • Detailed explanation of the key points of Python Socket programming
  • Websocket+Vuex implements a real-time chat software
  • Java Socket to implement multi-person chat system
  • Node.js+express+socket realizes online real-time multi-person chat room
  • Springboot Websocket Stomp message subscription push
  • Java Socket simulation to realize chat room
  • C++ implements network chat room based on socket multithreading
  • C language socketpair usage case explanation

<<:  Mycli is a must-have tool for MySQL command line enthusiasts

>>:  In-depth explanation of the locking mechanism in MySQL InnoDB

Recommend

JS ES new features template string

Table of contents 1. What is a template string? 2...

Use CSS to set the width of INPUT in TD

Recently, when I was using C# to make a Web progra...

Detailed steps to build the TypeScript environment and deploy it to VSCode

Table of contents TypeScript environment construc...

Django online deployment method of Apache

environment: 1. Windows Server 2016 Datacenter 64...

Using js to achieve the effect of carousel

Today, let's talk about how to use js to achi...

Pure CSS to achieve automatic rotation effect of carousel banner

Without further ado, let’s get straight to the co...

How to view the creation time of files in Linux

1. Introduction Whether the creation time of a fi...

The difference between JS pre-parsing and variable promotion in web interview

Table of contents What is pre-analysis? The diffe...

Summary of the differences between MySQL storage engines MyISAM and InnoDB

1. Changes in MySQL's default storage engine ...

Implementation of MySQL select in subquery optimization

The following demonstration is based on MySQL ver...

mysql-8.0.17-winx64 deployment method

1. Download mysql-8.0.17-winx64 from the official...

Mysql keeps the existing content and adds content later

This command modifies the data table ff_vod and a...

Upgrade MySQL 5.1 to 5.5.36 in CentOS

This article records the process of upgrading MyS...