Reputation: 2041
When I open my project downloaded from git in VS2015, it runs npm install
to install my Gulp plugins. But the point is that VS using old versions of node.js and npm:
npm WARN engine [email protected]: wanted: {"node":">=0.12.0"} (current: {"node":"v0.10.31","npm":"1.4.9"})
So it causes some errors with the project. How to update them inside VS?
Upvotes: 0
Views: 1036
Reputation: 420
If you're sure there are actual errors and not just warnings, you'll want to update NPM and nodejs.
Installation Steps:
Note: If node or NPM already exists, this will overwrite the files and dispose of old, unnecessary files.
Reference: http://blog.teamtreehouse.com/install-node-js-npm-windows
Upvotes: 1