Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript

How to downgrade node version in windows ?

I'm using node-inspector for debugging but it have some problem with the node version installed on my system so for downgrading the node version I download nvm windows installer and installed it but I'm not getting a way to work with it.

I did some research to try and help out some. I think you are trying to downgrade your node js version using nvm on Windows. Here is what I found:

With nvm you can work with it in the terminal shell once it is installed. To check if it installed you can type in a command line "-v nvm" . It should return "nvm". After that you can list all the node versions by typing "nvm ls". (Ls in lowercase) To use a version listed type "nvm use version"

I referenced the git hub docs at https://github.com/creationix/nvm/blob/master/README.markdown and an article on nvm at https://davidwalsh.name/nvm