我刚刚创建了一个 node.js 聊天应用程序.. 但该应用程序没有加载。代码是非常基本的 node.js 聊天应用程序:
// Load the TCP Library
var net = require('net');
// Keep track of the chat clients
var clients = [];
// Start a TCP Server
net.createServer(function (client) {
console.log("Connected!");
clients.push(client);
client.on('data', function (data) {
clients.forEach(function (client) {
client.write(data);
});
});
}).listen(5000);
// Put a friendly message on the terminal of the server.
console.log("Chat server is running\n");
编译后,我在 chrome 浏览器中编写,localhost:5000
但页面一直在加载,永远不会完成。
但是,以下代码可以完美运行:
// Load the TCP Library
net = require('net');
// Start a TCP Server
net.createServer(function (client) {
client.write("Hello World");
client.end();
}).listen(5000);
我在我的电脑上运行 Windows 7 64 位,并且我使用的是 chrome。
提前致谢!