Reputation: 47861
I noticed that webstorm has an external libraries node in the project explorer. In that I see Node.js 0.6.15 and also an option for Node.js Globals.
Two questions:
Are the external libraries used for code completion?
Upvotes: 1
Views: 2192
Reputation: 401897
Node.js is configured as a Global Library in WebStorm. If you want to use another version, delete the existing library and follow the documentation to configure the new version, during the configuration process a new global library will be added.
It's used for code completion and stepping in debug mode.
Upvotes: 1