The Current/Stable version of node is 0.8.16 (2012-11-01) see: nodejs.org
Review of the node maling list indicates that using NVM (Node Version Manager) is the best way to manage your nodejs versioning/upgrading. see: github.com/creationix/nvm
usage:
git clone git://github.com/creationix/nvm.git ~/nvm
. ~/nvm/nvm.sh
Then you can install a specific version of NodeJS using the nvm command:
nvm install v0.8.16
followed by:
nvm use v0.8.16
I can't see a specific advantage of using NVM from creationix (Tim Caswell) over N from visionmedia (TJ Holowaychuk) github.com/visionmedia/n mentioned above by @generalhenry other than the verboseness of NVM's commands if you keep a Terminal/SSH Log - otherwise they appear functionally equivalent. I will point out that NVM does have more than twice the number of GitHub followers that N has (1020 and 438 respectively) that's usually - but not always - a sign of a better module... feel free to correct if you know better. ;-)