gpt4 book ai didi

javascript - 在 nodeJs socket.io on 方法在 webstorm 中未解决

转载 作者:搜寻专家 更新时间:2023-10-31 23:30:31 24 4
gpt4 key购买 nike

我正在学习 node 中的 socket.io,我已经使用-安装了模块

npm install socket.io --save

这是我的代码

var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);

app.get('/', function(req, res){
res.send('index.html');
});

io.on('connection', function(socket){
console.log('a user connected');
});

http.listen(3000, function(){
console.log('listening on *:3000');
});

enter image description here

but webstorm is saying that 'on' is unresolved .. please help

最佳答案

  1. 在 WebStorm 中打开“设置”(Ctrl+Alt+S)
  2. 转到“语言和框架”→“JavaScript”→“库”
  3. 按“下载”
  4. 选择库“socket.io”
  5. 按“下载并安装”

这就是所有人!

关于javascript - 在 nodeJs socket.io on 方法在 webstorm 中未解决,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39930479/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com