为什么Intellij-Idea中的node.js插件不起作用?

时间:2017-03-13 14:30:31

标签: node.js intellij-idea plugins

我为Intellij-Idea安装了插件,但它不起作用。为什么会这样?正如您所看到的,需要的单词不会变为黄色。enter image description here

这是我的插件安装: enter image description here

2 个答案:

答案 0 :(得分:2)

请务必在Node.js Core

中启用File | Settings | Languages & Frameworks | Node.js and NPM

答案 1 :(得分:0)

  • 我喜欢将鼠标悬停在带下划线的内容上,以便为我提供从哪里开始的线索。您的"path""require"带有下划线。您的错误可能会显示Unused local variable 'path'Unresolved method or function require()

  • 您可能没有在当前项目中安装节点。如果您没有安装节点,请尝试:

    1. npm init创建一个package.json文件。 IntelliJ将引导您完成创建文件。如果需要,您可以直接按Enter键,稍后再进行编辑。

    2. npm install express --save(用您尝试使用的任何库替换表达式)将库保存在依赖项列表中

Installing express

How can I fix WebStorm warning “Unresolved function or method” for “require”