April 2018
Beginner
536 pages
13h 21m
English
We have learned how to use the Google Chrome development tools to analyze frontend application. However, the same tools can also be used to analyze backend applications powered by Node.js.
To use the Google Chrome development tools to analyze a Node.js application, we need to start the Node.js application using the --inspect flag:
ts-node --inspect main.ts
Then we need to visit the chrome://inspect URL using Google Chrome.
If everything went well, we should be able to see the following screen:

We then need to click on the inspect link, which should be available under the Remote Target section. ...