Um real-time aplicativo de bate-papo é um excelente exemplo de como utilizar WebSocket para Node.js criar uma experiência de usuário interativa e envolvente. Neste artigo, exploraremos como criar um real-time aplicativo de bate-papo usando WebSocket e Node.js.
Passo 1: Configurando o Ambiente
Primeiro, certifique-se de ter Node.js instalado em seu computador. Crie uma nova pasta para o seu projeto e navegue nela usando Terminal ou Command Prompt.
Passo 2: Instalando a WebSocket Biblioteca
Como antes, use a biblioteca "ws" para instalar a WebSocket biblioteca:
npm install ws
Passo 3: Construindo o WebSocket Servidor
Crie um arquivo nomeado server.js
e escreva o seguinte código:
// 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);
});
});
Etapa 4: Criando a interface do usuário(cliente)
Crie um arquivo nomeado index.html
e escreva o seguinte código:
<!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>
Etapa 5: executando o servidor e abrindo o navegador
No Terminal, execute o seguinte comando para iniciar o WebSocket servidor:
node server.js
Abra um navegador da Web e navegue até " http://localhost:8080 " para usar o real-time aplicativo de bate-papo.
Conclusão
Parabéns! Você construiu com sucesso um real-time aplicativo de bate-papo usando WebSocket e Node.js. Este aplicativo permite que os usuários interajam e enviem/recebam mensagens em formato real-time. Você pode continuar a expandir e personalizar este aplicativo para criar vários recursos interessantes!