Remote debugging of Node.js applications and code on WebKit browsers
The article will discuss Must Have tools for remote debugging of Node.js applications or code on WebKit browsers node-inspector .
For debugging code in the browser, in principle, remote debugging is not needed, apart from mobile devices, where it is actually not possible because it is extremely inconvenient. Quite another thing with server-side JavaScript. Node.js has several debuggers that mainly promote ndb Node Debugger, a console utility for debugging Node.js applications. Suitable only for console fans or for masochists. It's not convenient to work, debugging is long, compared to debugging code in the same FireBug.
What node-inspector can do:
1. Remote debugging
2. Debugging in the WebKit-debugger GUI (You don’t need to install anything on the client - you already have everything)
PS At first I wanted to post a comment to the previous topic-link about remote debugging habrahabr.ru/blogs/javascript/114811 but the comment was too long, so I decided to issue an article.