ब्रॉडकास्टिंग डेटा आणि समाकलित करणे WebSocket हे रिअल-टाइम ऍप्लिकेशन्स तयार करण्याच्या दोन महत्त्वपूर्ण बाबी आहेत Node.js. WebSocket या लेखात, आम्ही डेटा कसा प्रसारित करायचा आणि परस्परसंवादी आणि प्रतिसाद देणारा वापरकर्ता अनुभव कसा तयार करायचा ते शोधू .
पायरी 1: सर्व्हरवरून डेटा प्रसारित करणे
सर्व्हरवरून क्लायंट कनेक्शनवर डेटा प्रसारित करण्यासाठी, तुम्ही broadcast
सर्व कनेक्शनला संदेश पाठवणे किंवा send
विशिष्ट कनेक्शनला संदेश पाठवणे यासारख्या पद्धती वापरू शकता. सर्व्हरवरून डेटा प्रसारित करण्याचे येथे एक उदाहरण आहे:
// ... Initialize WebSocket server
// Broadcast data to all connections
function broadcast(message) {
for(const client of clients) {
client.send(message);
}
}
// Handle new connections
server.on('connection',(socket) => {
// Add connection to the list
clients.add(socket);
// Handle incoming messages from the client
socket.on('message',(message) => {
// Broadcast the message to all other connections
broadcast(message);
});
// Handle connection close
socket.on('close',() => {
// Remove the connection from the list
clients.delete(socket);
});
});
पायरी 2: WebSocket अनुप्रयोगांमध्ये Node.js एकत्रीकरण
WebSocket अनुप्रयोगामध्ये समाकलित करण्यासाठी, तुम्हाला तुमच्या JavaScript कोडमध्ये कनेक्शन Node.js स्थापित करणे आवश्यक आहे. तुमच्या अर्जाच्या क्लायंट-साइडमध्ये WebSocket समाकलित करण्याचे येथे एक उदाहरण आहे: WebSocket
// Initialize WebSocket connection from the client
const socket = new WebSocket('ws://localhost:8080');
// Handle incoming messages from the server
socket.onmessage =(event) => {
const message = event.data;
// Process the received message from the server
console.log('Received message:', message);
};
// Send a message from the client to the server
function sendMessage() {
const messageInput = document.getElementById('messageInput');
const message = messageInput.value;
socket.send(message);
messageInput.value = '';
}
निष्कर्ष
डेटा प्रसारित करून आणि WebSocket मध्ये समाकलित करून Node.js, आपण परस्परसंवादी आणि प्रतिसादात्मक रिअल-टाइम अनुप्रयोग तयार करू शकता. हे वापरकर्त्याचे अनुभव वाढवते आणि क्लायंट आणि सर्व्हर ऍप्लिकेशन्स दरम्यान रिअल-टाइम संवाद सक्षम करते.