Upgrade Node.js via NPM + OS X Mountain Lion
Actualizando Node.js a la ultima version, los pasos son sumamente sencillos.
sudo npm cache clean -f sudo npm install -g n sudo n stable node -v
Así de facil
Ver entrada

seen from Türkiye

seen from United States

seen from France
seen from Germany

seen from Malaysia
seen from United States
seen from United States
seen from United States
seen from China
seen from Estonia
seen from Netherlands
seen from United States
seen from Vietnam
seen from China
seen from Netherlands
seen from India
seen from United States
seen from Malaysia
seen from China
seen from China
Upgrade Node.js via NPM + OS X Mountain Lion
Actualizando Node.js a la ultima version, los pasos son sumamente sencillos.
sudo npm cache clean -f sudo npm install -g n sudo n stable node -v
Así de facil
Ver entrada

Anya is live and ready to show you everything. Watch her strip, dance, and perform exclusive shows just for you. Interact in real-time and make your fantasies come true.
Free to watch • No registration required • HD streaming
Upgrading your nodejs version through npm
Node.js is continuously under development and the latest version keeps updating from time to time. Many of us have installed node long time ago and would like to update it to the latest version to use few packages that are supported only by newer node versions. For instance, to use node-inspector, one must have node 0.8.1 or above installed.
One way of doing it is getting the latest image from nodejs.org and installing it. Turns out that there is an easier way. Follow these simple steps below to upgrade your node package.
Clear your npm cache (sudo npm cache clean -f)
Install 'n'. 'n' is a Node helper that we will use to upgrade our node version.
Upgrade to latest version (sudo n stable)
Alternatively, you can specify the version you want to upgrade to. (sudo n 0.8.25)