1

我能够按照以下说明进行实时编辑: running-and-debugging-node-js

我能够在这篇文章之后 运行 nodemon:如何从 WebStorm 中运行 nodemon?

但是,我无法将这两种配置结合起来使用 nodemon 进行实时编辑......

如果我将 nodemon 参数添加到我的实时编辑配置中,它将停止工作

想法?

谢谢

4

2 回答 2

3

对我来说很好(WebStorm 7.0.1)。这是我的 nodemon 运行配置(我在 Windows 7 上):

**Configuration tab**

Working directory: my project dir

JavaScript file: ~\AppData\Roaming\npm\node_modules\nodemon\nodemon.js

Application parameters: app.js

**Browser/LiveEdit tab**

'After launch' checked

'with javascript debugger' checked

http://localhost:3000/index.html

当我在调试器中运行此配置时,对 html/css(使用 connect.static 提供)所做的所有更改都是“实时的”

如果类似的配置对您不起作用,您能否提供一个显示您的问题的示例项目?

于 2013-11-13T13:39:37.657 回答
0

您是否已将 nodemon 添加到您的 package.json 中?

"devDependencies": {
  "nodemon": "~1.3.7"
},

或者您是否安装了带有 --dev 标志的 nodemon,它会为您添加它?例如install nodemon --dev

于 2015-06-09T16:14:23.307 回答