如何在 VS Code 中启用 Node.js Intellisense?

问题描述 投票:0回答:1

如何在 VS Code 中启用 Node.js Intellisense?

例如,我知道 Node.js 中存在一个常量

__dirname
,但是当我尝试在 VS Code 中输入
__dir
时,我没有得到任何建议,而我希望看到
__dirname
作为建议.

enter image description here

我能做什么呢?也许我应该安装一个插件?

这是我使用的 VS Code 版本:

Version: 1.33.1 (user setup)
Commit: 51b0b28134d51361cf996d2f0a1c698247aeabd8
Date: 2019-04-11T08:27:14.102Z
Electron: 3.1.6
Chrome: 66.0.3359.181
Node.js: 10.2.0
V8: 6.6.346.32
OS: Windows_NT x64 10.0.17763

谢谢你。

node.js visual-studio-code ide intellisense hint
1个回答
25
投票

以前有一段时间:

npm install node

在项目根文件夹中足以让 vscode (至少对于我的情况)为我提供节点的智能感知。现在我需要执行以下操作:

npm install @types/node

再次在项目文件夹中。 VS Code 文档似乎也建议了相同的解决方案 .

© www.soinside.com 2019 - 2024. All rights reserved.