MonkeyBonkey
MonkeyBonkey

Reputation: 47921

node.js external libraries in webstorm

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:

  1. Can I have it reference node 0.8?
  2. What is Node.js Globals for?

Are the external libraries used for code completion?

Upvotes: 1

Views: 2193

Answers (1)

CrazyCoder
CrazyCoder

Reputation: 402503

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

Related Questions