当前位置 : 主页 > 网络编程 > JavaScript >

NodeSocketServerOverTCP

来源:互联网 收集:自由互联 发布时间:2021-06-28
server.js // Load the TCP Librarynet = require('net');// Keep track of the chat clientsvar clients = [];// Start a TCP Servernet.createServer(function (socket) { // Identify this client socket.name = socket.remoteAddress + ":" + socket.remo
server.js
// Load the TCP Library
net = require('net');

// Keep track of the chat clients
var clients = [];

// Start a TCP Server
net.createServer(function (socket) {

  // Identify this client
  socket.name = socket.remoteAddress + ":" + socket.remotePort

  // Put this new client in the list
  clients.push(socket);

  // Send a nice welcome message and announce
  socket.write("Welcome " + socket.name + "\n");
  broadcast(socket.name + " joined the dance group\n", socket);

  // Handle incoming messages from clients.
  socket.on('data', function (data) {
    //broadcast(socket.name + "> " + data, socket);
    broadcast(data, socket);
  });

  // Remove the client from the list when it leaves
  socket.on('end', function () {
    clients.splice(clients.indexOf(socket), 1);
    broadcast(socket.name + " left the dancce group.\n");
  });

  // Send a message to all clients
  function broadcast(message, sender) {
    clients.forEach(function (client) {
      // Don't want to send it to sender
      if (client === sender) return;
      client.write(message);
    });
    // Log it to the server output too
    process.stdout.write(message)
  }

}).listen(20000);

// Put a friendly message on the terminal of the server.
console.log("Dance server running at port 20000\n");
上一篇:lotto.js
下一篇:360导航拖拽特效
网友评论