Node+socket realizes simple chat room function

Node+socket realizes simple chat room function

This article shares the specific code of node+socket to implement a simple chat room for your reference. The specific content is as follows

Server

const net = require('net')
const server = net.createServer()

//User list let clients = []

//Listen for connections server.on('connection',client=>{
    client.on('data',(chunk)=>{
        let data = chunk.toString()
        if(data.match(/login:(.*)/)){
            let name = data.match(/login:(.*)/)[1]
            client.name = name
            clients.push(client)
            console.log(`User ${name} is online`)
        }else{
            for (const client of clients) {
                if(client.name!==JSON.parse(data).name){
                    client.write(data)
                }

            }
        }
    })

    client.on('close',()=>{
        console.log(`User ${client.name} is offline`)
    })

    client.on('error',()=>{
        console.log(`An error occurred for user ${client.name}`)
    })

})

server.on('error',(err)=>{
    console.log('Server error',err)
})

server.on('close',()=>{
    console.log('Server shutdown')
})

server.listen(9527,()=>{
    console.log("Server started")
})

Client

const net = require('net')
const readline = require('readline')
//Read input information const rl = readline.createInterface({
    input: process.stdin,
    output: process.stdout
});

//name const name = process.argv[2]
//Connect to the server const client = net.createConnection({port:9527},()=>{
    console.log(name+'connect to server');
    client.write(`login:${name}`)
    client.name = name
    //Start sending information sendMsg(client)
})

client.on('data', (chunk) => {

    let data = JSON.parse(chunk.toString())
    if(data){
        console.log(`[${data.name}] : ${data.msg}`)
    }
});
client.on('end', () => {
    console.log('Disconnected from server');
});
client.on('error', () => {
    console.log('Server error');
});

//Recursive output function sendMsg(client){

    rl.question('',(line)=>{
        client.write(JSON.stringify({
            name:client.name,
            msg:line
        }))
        sendMsg(client)
    })
}

Demo

Server

Client 1

Client 2

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:
  • NodeJS implements a chat room function
  • Steps to build a multi-person chat room with nodejs+express
  • Nodejs realizes multi-room simple chat room function
  • Implementing a multi-person chat room based on Nodejs using socket.io
  • Node.js websocket uses socket.io library to implement real-time chat room
  • How to use Node.js Net module to realize multi-person command line chat room
  • Using sockets to create private and public chat rooms in Node.js
  • AngularJS+Node.js to implement online chat room
  • Use Angular, Nodejs, and socket.io to build chat rooms and multi-person chat rooms
  • A simple chat room function sharing implemented by nodejs

<<:  MySql 8.0.16-win64 Installation Tutorial

>>:  Implementation of Docker cross-host network (manual)

Recommend

A little-known JS problem: [] == ![] is true, but {} == !{} is false

console.log( [] == ![] ) // true console.log( {} ...

12 Useful Array Tricks in JavaScript

Table of contents Array deduplication 1. from() s...

Detailed explanation of pipeline and valve in tomcat pipeline mode

Preface In a relatively complex large system, if ...

The difference between Input's size and maxlength attributes

I recently used the input size and maxlength attri...

mysql charset=utf8 do you really understand what it means

1. Let's look at a table creation statement f...

CentOS 7 Forgot Password Solution Process Diagram

need Whether it is a Windows system or a Linux sy...

WeChat applet selects the image control

This article example shares the specific code for...

Detailed explanation of CSS pre-compiled languages ​​and their differences

1. What is As a markup language, CSS has a relati...

JavaScript adds prototype method implementation for built-in objects

The order in which objects call methods: If the m...

New ideas for time formatting in JavaScript toLocaleString()

Table of contents 1. Conventional ideas for time ...

Use CSS3 to implement button hover flash dynamic special effects code

We have introduced how to create a waterfall layo...

SQL fuzzy query report: ORA-00909: invalid number of parameters solution

When using Oracle database for fuzzy query, The c...

js method to delete a field in an object

This article mainly introduces the implementation...