NodeJs version version and express version

I am currently working on a nodejs project. I installed Express 3.X, which is in alpha stage, and my node version is also in 0.7.2-pre. I'm currently trying to downgrade my express version using npm, but it seems to me that I need to downgrade my version of node.

What is the best way to achieve this? How do I reduce the class of my version of node. Thank you very much.

+7
source share
2 answers

To make node versioning easier, you can use the npm package called n

+15
source

There are tools that let you install multiple versions of Node — for example, NVM — so you can do this.

However, to answer the question, you will need to reinstall Node, I'm afraid. Fortunately, installing from a source is pretty simple, albeit a bit slow. Just follow the installation instructions on the GitHub page.

+3
source

All Articles