From bb495476112ee9a9c5b37848db7b44a561355230 Mon Sep 17 00:00:00 2001 From: creationix Date: Thu, 15 Apr 2010 10:00:34 -0700 Subject: [PATCH] --- README.markdown | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 README.markdown diff --git a/README.markdown b/README.markdown new file mode 100644 index 0000000..a875105 --- /dev/null +++ b/README.markdown @@ -0,0 +1,32 @@ +# Node Version Manager + +## Installation + +To install create a folder somewhere in your filesystem with the nvm.sh file inside it. I put mine in a folder called `.nvn`. + +Then add two lines to your bash profile: + + NVM_DIR=$HOME/.nvm + . $NVM_DIR/nvm.sh + +## Usage + +To download, install, and use the v0.1.91 release of node do this: + + nvm install v0.1.91 + +And then in any new shell just use the installed version: + + nvm use v0.1.91 + +If you want to track HEAD then use the clone command: + + nvm clone + +Then in any new shell you can get this version with: + + nvm use HEAD + +When you want to grab the latest from the node repo do: + + nvm update \ No newline at end of file