在开发视频应用程序的情况下,我尝试使用socket.io。为了向自己介绍该库,我遵循不同的教程,严重的是我总是遇到同样的问题。
每次我尝试调用库时:
var io = require('socket.io')(http);
我的语法问题如下:
Projects/2017_07_24_firstSocketApp/node_modules/socket.io/node_modules/engine.io/node_modules/ws/lib/WebSocket.js:140
this._ultron.on('data', (data) => {
^
SyntaxError: missing ) after argument list
at exports.runInThisContext (vm.js:53:16)
at Module._compile (module.js:413:25)
at Object.Module._extensions..js (module.js:448:10)
at Module.load (module.js:355:32)
at Function.Module._load (module.js:310:12)
at Module.require (module.js:365:17)
at require (module.js:384:17)
at Object.<anonymous> (/Users/sandale/Documents/Projects/2017_07_24_firstSocketApp/node_modules/socket.io/node_modules/engine.io/node_modules/ws/index.js:9:19)
at Module._compile (module.js:430:26)
at Object.Module._extensions..js (module.js:448:10)
C02RN10GG8WN:2017_07_24_firstSocketApp $
所以我决定使用像socket.io 1.7.3这样的早期版本,就像魅力一样。我只想知道这是否是一个常见问题,如果有人知道解决问题的方法。
先谢谢
这是我的代码: index.js
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
app.get('/', function(req, res){
res.sendFile(__dirname + '/index.html');
});
io.on('connection', function(socket){
console.log('a user connected');
});
http.listen(3000, function(){
console.log('listening on *:3000');
});
的index.html
<!doctype html>
<html>
<head>
<title>Socket.IO chat</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font: 13px Helvetica, Arial; }
form { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; }
form input { border: 0; padding: 10px; width: 90%; margin-right: .5%; }
form button { width: 9%; background: rgb(130, 224, 255); border: none; padding: 10px; }
#messages { list-style-type: none; margin: 0; padding: 0; }
#messages li { padding: 5px 10px; }
#messages li:nth-child(odd) { background: #eee; }
</style>
</head>
<body>
<ul id="messages"></ul>
<form action="">
<input id="m" autocomplete="off" /><button>Send</button>
</form>
<script src="/socket.io/socket.io.js"></script>
<script>
var socket = io();
</script>
</body>
</html>
答案 0 :(得分:0)
箭头函数((data) => { ... }
)仅在(相对)新版本的Node.js中支持(自v4.5起),因此看起来你正在使用的版本的Node.js太旧了。