From a0c2b162c3ddb4a3cadcff7b1c966d06701692cb Mon Sep 17 00:00:00 2001 From: Corey Butler Date: Fri, 3 Oct 2014 18:29:57 -0500 Subject: [PATCH] Added new feature descriptions --- README.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index dd0ce35..dbd4164 100644 --- a/README.md +++ b/README.md @@ -28,13 +28,16 @@ Make sure you use the same installation and symlink folder. If you originally in NVM for Windows is a command line tool. Simply type `nvm` in the console for help. The basic commands are: -- `nvm install `: Install a specific version, i.e. `0.10.32`, or type `latest` for the latest stable version. +- `nvm arch`: Show if node is running in 32 or 64 bit mode. +- `nvm install [arch]`: The version can be a node.js version or "latest" for the latest stable version. Optionally specify whether to install the 32 or 64 bit version (defaults to system arch). Set `[arch]` to "all" to install 32 AND 64 bit versions. +- `nvm list`: List the node.js installations. +- `nvm on`: Enable node.js version management. +- `nvm off`: Disable node.js version management (does not uninstall anything). +- `nvm proxy [url]`: Set a proxy to use for downloads. Leave `[url]` blank to see the current proxy. Set `[url]` to "none" to remove the proxy. - `nvm uninstall `: Uninstall a specific version. -- `nvm use `: Switch to a specific version. -- `nvm list`: List the versions that are currently installed. -- `nvm on`: Enable nvm management. -- `nvm off`: Turn off nvm entirely (does not uninstall anything). -- `nvm root `: Specify the root directory where different versions of node.js are stored. Leave blank to see the current root. +- `nvm use [arch]`: Switch to use the specified version. Optionally specify 32/64bit architecture. `nvm use ` will continue using the selected version, but switch to 32/64 bit mode based on the value supplied to ``. +- `nvm root `: Set the directory where nvm should store different versions of node.js. If `` is not set, the current root will be displayed. +- `nvm version`: Displays the current running version of NVM for Windows. ### Gotcha! -- GitLab