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

时间:2019-04-25 19:57:20

标签: node.js visual-studio-code ide intellisense hint

如何在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

谢谢。

1 个答案:

答案 0 :(得分:1)

一段时间后背:

npm install node;
项目根文件夹中的

足以让vscode(至少对于我来说是这样)为我提供node的智能感知。现在我还需要这样做:

npm install @types/node;
再次

在项目文件夹中。 Also the same solution seems to be suggested from vs code docs