Sukurkite pagrindinį WebSocket serverį su Node.js

Pokalbių real-time programa yra puikus pavyzdys, kaip ją naudoti WebSocket kuriant Node.js interaktyvią ir patrauklią vartotojo patirtį. Šiame straipsnyje mes išnagrinėsime, kaip sukurti real-time pokalbių programą naudojant WebSocket ir Node.js.

1 veiksmas: aplinkos nustatymas

Pirmiausia įsitikinkite, kad įdiegėte Node.js savo kompiuteryje. Sukurkite naują projekto aplanką ir naršykite jį naudodami Terminal arba Command Prompt.

2 veiksmas: WebSocket bibliotekos įdiegimas

Kaip ir anksčiau, bibliotekai įdiegti naudokite „ws“ biblioteką WebSocket:

npm install ws

3 veiksmas: sukurkite WebSocket serverį

Sukurkite failą pavadinimu server.js  ir parašykite šį kodą:

// Import the WebSocket library  
const WebSocket = require('ws');  
  
// Create a WebSocket server  
const server = new WebSocket.Server({ port: 8080 });  
  
// List of connections(clients)  
const clients = new Set();  
  
// Handle new connections  
server.on('connection',(socket) => {  
    console.log('Client connected.');  
  
    // Add connection to the list  
    clients.add(socket);  
  
    // Handle incoming messages from the client  
    socket.on('message',(message) => {  
        // Send the message to all other connections  
        for(const client of clients) {  
            if(client !== socket) {  
                client.send(message);  
            }  
        }  
    });  
  
    // Handle connection close  
    socket.on('close',() => {  
        console.log('Client disconnected.');  
        // Remove the connection from the list  
        clients.delete(socket);  
    });  
});  

4 veiksmas: vartotojo sąsajos(kliento) kūrimas

Sukurkite failą pavadinimu index.html ir parašykite šį kodą:

<!DOCTYPE html>  
<html>  
<head>  
    <title>Real-Time Chat</title>  
</head>  
<body>  
    <input type="text" id="message" placeholder="Type a message">  
    <button onclick="send()">Send</button>  
    <div id="chat"></div>  
      
    <script>  
        const socket = new WebSocket('ws://localhost:8080');  
        socket.onmessage =(event) => {  
            const chat = document.getElementById('chat');  
            chat.innerHTML += '<p>' + event.data + '</p>';  
        };  
  
        function send() {  
            const messageInput = document.getElementById('message');  
            const message = messageInput.value;  
            socket.send(message);  
            messageInput.value = '';  
        }  
    </script>  
</body>  
</html>  

5 veiksmas: paleiskite serverį ir atidarykite naršyklę

Norėdami Terminal paleisti serverį, paleiskite šią komandą WebSocket:

node server.js

Atidarykite žiniatinklio naršyklę ir eikite į „ http://localhost:8080 “, kad galėtumėte naudoti real-time pokalbių programą.

 

Išvada

Sveikiname! Sėkmingai sukūrėte real-time pokalbių programą naudodami WebSocket ir Node.js. Ši programa leidžia vartotojams bendrauti ir siųsti / gauti pranešimus real-time. Galite toliau plėsti ir tinkinti šią programą, kad sukurtumėte įvairių įdomių funkcijų!