From 3ce23aa7267c233666dd81602c2b239411c6b347 Mon Sep 17 00:00:00 2001 From: Hugo Josefson Date: Mon, 4 Mar 2013 12:50:55 +0100 Subject: [PATCH 1/2] Recommend version 0.8 in README.markdown. Automatically install the latest available 0.8.x version. --- README.markdown | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.markdown b/README.markdown index 84479f4..4c76b21 100644 --- a/README.markdown +++ b/README.markdown @@ -34,17 +34,17 @@ Often I also put in a line to use a specific version of node. ## Usage -To download, compile, and install the v0.6.14 release of node, do this: +To download, compile, and install the latest v0.8.x release of node, do this: - nvm install 0.6.14 + nvm install 0.8 And then in any new shell just use the installed version: - nvm use 0.6.14 + nvm use 0.8 Or you can just run it: - nvm run 0.6.14 + nvm run 0.8 If you want to see what versions are available: @@ -56,7 +56,7 @@ To restore your PATH, you can deactivate it. To set a default Node version to be used in any new shell, use the alias 'default': - nvm alias default 0.6 + nvm alias default 0.8 ## License From e4acd639914d6f0d708e81c518251eb4bfdc510c Mon Sep 17 00:00:00 2001 From: Hugo Josefson Date: Mon, 4 Mar 2013 12:54:42 +0100 Subject: [PATCH 2/2] Clarify difference between `nvm ls` and `nvm ls-remote`. --- README.markdown | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 4c76b21..a85482f 100644 --- a/README.markdown +++ b/README.markdown @@ -46,10 +46,14 @@ Or you can just run it: nvm run 0.8 -If you want to see what versions are available: +If you want to see what versions are installed: nvm ls +If you want to see what versions are available to install: + + nvm ls-remote + To restore your PATH, you can deactivate it. nvm deactivate