我是nodejs的新手。我在windows10上有Nodejs。 然后我在Nodejs中创建了一个带有server.js文件的文件夹,并通过命令安装socket.io" npm install socket.io"
我的server.js看起来像
var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs')
app.listen(3000);
/*
function handler (req, res) {
fs.readFile(__dirname + '/index.html',
function (err, data) {
if (err) {
res.writeHead(500);
return res.end('Error loading index.html');
}
res.writeHead(200);
res.end(data);
});
}*/
io.sockets.on('connection', function (socket) {
console.log('connected');
/* socket.emit('news', { hello: 'world' });
socket.on('my other event', function (data) {
console.log(data);
});*/
});
然后我做节点server.js并且操作被卡住了
答案 0 :(得分:0)
当你说操作被卡住时,你的意思是什么?您是否尝试使用Web浏览器连接到服务器?