@jchip/nvm
Advanced tools
+1
-1
@@ -6,3 +6,3 @@ param ( | ||
| $nvmVersion = "1.6.3" | ||
| $nvmVersion = "1.6.4" | ||
| $nvmVersionV = "v$nvmVersion" | ||
@@ -9,0 +9,0 @@ $DisableInstallNvmFromTgz = $false |
+1
-1
| NVM_VERSION="1.6.3" | ||
| NVM_VERSION="1.6.4" | ||
| NVM_VERSION_V="v${NVM_VERSION}" | ||
@@ -4,0 +4,0 @@ |
+1
-1
| { | ||
| "name": "@jchip/nvm", | ||
| "description": "nvm: a universal node.js version manager for Windows (no admin) and Unix", | ||
| "version": "1.6.3", | ||
| "version": "1.6.4", | ||
| "author": "Tom.Huang <hzlhu.dargon@gmail.com>", | ||
@@ -6,0 +6,0 @@ "contributors": [ |
+32
-23
@@ -57,3 +57,3 @@ # @jchip/nvm | ||
| cd $Env:USERPROFILE; | ||
| Invoke-WebRequest https://raw.githubusercontent.com/jchip/nvm/v1.6.3/install.ps1 -OutFile install.ps1; | ||
| Invoke-WebRequest https://raw.githubusercontent.com/jchip/nvm/v1.6.4/install.ps1 -OutFile install.ps1; | ||
| .\install.ps1 -nvmhome $Env:USERPROFILE\nvm; | ||
@@ -69,3 +69,3 @@ del install.ps1 | ||
| cd $Env:USERPROFILE; | ||
| Invoke-WebRequest https://unpkg.com/@jchip/nvm@1.6.3/install.ps1 -OutFile install.ps1; | ||
| Invoke-WebRequest https://unpkg.com/@jchip/nvm@1.6.4/install.ps1 -OutFile install.ps1; | ||
| .\install.ps1 -nvmhome $Env:USERPROFILE\nvm; | ||
@@ -81,3 +81,3 @@ del install.ps1 | ||
| cd $Env:USERPROFILE; | ||
| Invoke-WebRequest https://cdn.jsdelivr.net/npm/@jchip/nvm@1.6.3/install.ps1 -OutFile install.ps1; | ||
| Invoke-WebRequest https://cdn.jsdelivr.net/npm/@jchip/nvm@1.6.4/install.ps1 -OutFile install.ps1; | ||
| .\install.ps1 -nvmhome $Env:USERPROFILE\nvm; | ||
@@ -127,4 +127,4 @@ del install.ps1 | ||
| 1. Download the package zip file from https://github.com/jchip/nvm/archive/v1.6.3/.zip | ||
| 1. Extract this file to your home directory. You will get a new directory `nvm-1.6.3`. | ||
| 1. Download the package zip file from https://github.com/jchip/nvm/archive/v1.6.4/.zip | ||
| 1. Extract this file to your home directory. You will get a new directory `nvm-1.6.4`. | ||
| 2. Rename it to `nvm`, for example: `C:\Users\<username>\nvm` | ||
@@ -160,3 +160,3 @@ 2. Download the zipfile https://nodejs.org/dist/v20.12.1/node-v20.12.1-win-x64.zip | ||
| ```bash | ||
| NVM_HOME=~/nvm curl -o- https://raw.githubusercontent.com/jchip/nvm/v1.6.3/install.sh | bash | ||
| NVM_HOME=~/nvm curl -o- https://raw.githubusercontent.com/jchip/nvm/v1.6.4/install.sh | bash | ||
| ``` | ||
@@ -167,3 +167,3 @@ | ||
| ```bash | ||
| NVM_HOME=~/nvm wget -qO- https://raw.githubusercontent.com/jchip/nvm/v1.6.3/install.sh | bash | ||
| NVM_HOME=~/nvm wget -qO- https://raw.githubusercontent.com/jchip/nvm/v1.6.4/install.sh | bash | ||
| ``` | ||
@@ -178,3 +178,3 @@ | ||
| ```bash | ||
| NVM_HOME=~/nvm curl -o- https://unpkg.com/@jchip/nvm@1.6.3/install.sh | bash | ||
| NVM_HOME=~/nvm curl -o- https://unpkg.com/@jchip/nvm@1.6.4/install.sh | bash | ||
| ``` | ||
@@ -185,3 +185,3 @@ | ||
| ```bash | ||
| NVM_HOME=~/nvm wget -qO- https://unpkg.com/@jchip/nvm@1.6.3/install.sh | bash | ||
| NVM_HOME=~/nvm wget -qO- https://unpkg.com/@jchip/nvm@1.6.4/install.sh | bash | ||
| ``` | ||
@@ -196,3 +196,3 @@ | ||
| ```bash | ||
| NVM_HOME=~/nvm curl -o- https://cdn.jsdelivr.net/npm/@jchip/nvm@1.6.3/install.sh | bash | ||
| NVM_HOME=~/nvm curl -o- https://cdn.jsdelivr.net/npm/@jchip/nvm@1.6.4/install.sh | bash | ||
| ``` | ||
@@ -203,3 +203,3 @@ | ||
| ```bash | ||
| NVM_HOME=~/nvm wget -qO- https://cdn.jsdelivr.net/npm/@jchip/nvm@1.6.3/install.sh | bash | ||
| NVM_HOME=~/nvm wget -qO- https://cdn.jsdelivr.net/npm/@jchip/nvm@1.6.4/install.sh | bash | ||
| ``` | ||
@@ -213,11 +213,17 @@ | ||
| Commands: | ||
| nvm install <version> install the given version of Node.js | ||
| nvm uninstall <version> uninstall the given version of Node.js | ||
| nvm use <version> use the given version of Node.js in current shell | ||
| nvm stop undo effects of nvm in current shell [aliases: unuse] | ||
| nvm link <version> permanently link the version of Node.js as default | ||
| nvm unlink permanently unlink the default version | ||
| nvm ls list all the installed Node.js versions | ||
| nvm ls-remote list remote versions available for install | ||
| nvm cleanup remove stale local caches | ||
| nvm install <version> install the given version of Node.js | ||
| nvm uninstall <version> uninstall the given version of Node.js | ||
| nvm use <version> use the given version of Node.js in current shell | ||
| nvm stop undo effects of nvm in current shell | ||
| [aliases: unuse] | ||
| nvm link <version> permanently link the version of Node.js as default | ||
| nvm unlink permanently unlink the default version | ||
| nvm ls list all the installed Node.js versions | ||
| nvm ls-remote list remote versions available for install | ||
| nvm cleanup remove stale local caches | ||
| nvm postinstall [version] | ||
| Invoke custom post install script for the given version | ||
| nvm init-env | ||
| (windows) Generate cmd file to initialize env for nvm | ||
| nvm undo-env (windows) Generate cmd file to undo env for nvm | ||
@@ -233,2 +239,4 @@ Options: | ||
| Error: No command given | ||
| envs: | ||
@@ -241,5 +249,6 @@ | ||
| nvm install 12.8 | ||
| nvm use 12 | ||
| nvm uninstall 12.4 | ||
| nvm install lts | ||
| nvm install latest | ||
| nvm use 20 | ||
| nvm uninstall 22.3 | ||
@@ -246,0 +255,0 @@ doc: https://www.npmjs.com/package/@jchip/nvm |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
1447387
0.04%1293
0.08%258
3.61%