I use webstorm 10.0.2 and used the bangular yeoman to create the project. I can run gulp commands through the gulp window, and I can set a breakpoint in gulpfile.js and it will hit it, but I cannot get it to hit the breakpoint in my server.js
It seems to me that the gulp file starts another instance of node , and thus, when you debug the web server, you are just debugging the gulp.
I also tried using another project using yo hottowel , but I get the same thing - I cannot debug the actual application through webstorm.
Can someone tell me how to configure webstorm so that I can debug the server side code of the node, but still use the gulp build tool?
source share