webstorm配置nodejs开发环境

前端之家收集整理的这篇文章主要介绍了webstorm配置nodejs开发环境前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

环境:mac webstorm11.0.2 nodejs5+ express4+

安装supervisor

sudo npm install -g supervisor

然后在webstorm里面进行一下配置,让启动node的时候,默认用node-supervisor来代替node执行nodejs文件
code -> edit configuration -> node intepreter改成 "/usr/local/bin/node-supervisor" 就好了

然后debug就简单了,因为内置了调试器,就不用安装node-inspector了,它安装以及使用的方法

启动的时候,通过右击express里的bin/www文件,选择启动也行,或者在package.json里的script里配置一条debug命令也可以。

{
"scripts": {
    "start": "node ./bin/www","debug": "node-supervisor ./bin/www"
  },}  

配完后,在npm面板里一刷新,就会看到debug,启动它既可。

其他debug的方式就是右击bin/www文件或者右击app.js文件,选择debug。

原文链接:https://www.f2er.com/note/422532.html

猜你在找的程序笔记相关文章