Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我应该在哪个路径中安装用于 node.js 编程的 socket.io。我应该将它安装在与 node.js 相同的路径中吗?
你最好的方法是用来npm安装你的包:
npm
npm install socket.io
这会将其安装在您为该特定项目运行它的文件夹中。
如果您希望它为您的所有项目全局安装:
npm install -g socket.io