我想跟着一個簡單的示例Socket.IO位於http://socket.io/get-started/chat/。到目前爲止,我有下面的代碼在我的index.js文件:Socket.IO簡單示例不能正常工作
// INDEX.JS File var app = require('express')(); var http = require('http').Server(app); var io = require('socket.io')(http); app.get('/', function(req, res){ res.sendfile('index.html'); }); io.on('connection', function(socket){ socket.on('chat message', function(msg){ console.log('message: ' + msg); }); }); http.listen(3000, function(){ console.log('listening on *:3000'); });
我得到的錯誤是:
到WS連接://本地主機:3000/socket.io /? EIO = 2 & transport = websocket & sid = i0SyiRvHJC1GUiafAAAC在頁面加載時中斷。
我正在使用FireFox瀏覽頁面。它也不適用於Chrome。
這和這個問題很相似[socket.io 404 not found](https://stackoverflow.com/questions/48198835/socket-io-404-error/48255983#48255983) –