When developing a Node.js application it can be convenient to have code completion, validation and debugging capabilities for Node core modules (fs, path, http, etc).
Unfortunately, these modules are compiled into the binary. So you have to download the Node.js source code and attach it to the pr…