1

我在 Enide Studio 中建立了一个新项目。(这是一个带有 Node.js 插件的 Eclipse。)我右键单击该项目并选择“Debug As -> Debug Cofigurations...”。在弹出窗口中,我双击“NPM”配置,然后在“目标”文本框中键入“开始”。然后点击“Debug”,在控制台出现如下错误:

"execvp(): No such file or directory"

当我从命令行运行“npm start”时,它工作正常。如果重要的话,我的操作系统是 OS X 10.9。

有没有人遇到过同样的问题?可能是什么原因?

4

1 回答 1

0

Right-click on .js file and then "Debug As -> Node application"

With Node any .js file can be executed. (Hint: this also give you one more way to validate.)

Other debug options were not yet implemented or tested (as ChromeDevTools can give more options, we just have not tried everything, but implemented the most straight-forward ). Play with what you can, raise an issue on github with the error / feature description. https://github.com/Nodeclipse/nodeclipse-1/issues

Be sure that you have read http://www.nodeclipse.org/#support and Online / built-in Help Debug page.

于 2014-04-21T15:23:02.083 回答