Downgrade NodeJs Version and express version

express, javascript, node.js

Solution

To easy the node version management you can use an npm package called n

Problem

Currently I am working on a nodejs project. I have installed Express 3.X which is in alpha stage, and my node version is also at 0.7.2-pre. I am currently trying to downgrade my express version, via npm, but it seems that i have to downgrade my node version as well. What is the best way to achieve this? How do i down grade my node version. Thank you very much.

Original source