Kesara Wimal
Kesara Wimal

Reputation: 729

How to debug Express.js app with WebStorm

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

Answers (1)

bombyx mori
bombyx mori

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

Related Questions