imgreqop.blogg.se

Brew update node
Brew update node












brew update node

Just go to the official Node.js site ( ), download and execute the installer program. Install latest stable Node.js version sudo n stableĪlternatively pick a specific version and install like this: sudo n 0.8.20įor production environments you might want to pay attention to version numbering and be picky about odd/even numbers. Install a little helper called 'n' sudo npm install -g n Walsh himself recommended to update Node.js just using nvm instead.Ĭlear NPM's cache: sudo npm cache clean -f

brew update node

In 2013 I used the following instructions to upgrade from Node.js version 0.10.6 to 0.10.21 on a Mac, for more recent instructions see above. So if you would need to use an older version like v4.2.0 you would set it as the active version like this: nvm use 4.2 You are then free to choose between installed versions of Node.js. List all versions of Node.js available for installation: nvm ls-remoteĪpparently for Windows the command would be rather like this: nvm ls availableĪssuming you would pick Node.js v8.1.0 for installation you'd type the following to install that version: nvm install 8.1.0 To upgrade Node you may first want to see which version of Node.js you are currently using: node -versionįind out which versions of Node.js you may have installed and which one of those you're currently using: nvm ls














Brew update node