Reputation: 729
I am currently developing Express.js application which I suppose to use as an API for my Angular application. I need to debug Express app with WebStorm.
Can any one help me to figure out how to make this possible?
Upvotes: 2
Views: 4103
Reputation: 401
Webstorm has a native debugging tool for node.js, including breakpoints, call stack, in-editor expressions evaluation etc. You can find the exact explanation in the following link to jetbrains' blog, including specific example for an express application.
Upvotes: 4