I have no experience with node on Windows, but I just updated node and modules on my Mac, so this is just a general answer:
If you install v0.8, you can break existing node modules if they use legacy functions, etc. The problem is that npm only checks your version of node during module installation, and not when -time starts.
To be safe, you need to find the global node_modules folder on your computer, return it there, and then remove and reinstall the modules. You will need to do the same for the node_modules folders in the applications you use. (Assuming you have package.json files, reinstalling them should be easy.)
In practice, I do not think that any of the modules that I used are actually incompatible. Good luck.
rdrey Jul 28 '12 at 10:30 2012-07-28 10:30
source share