mirror of
				https://github.com/nvm-sh/nvm.git
				synced 2025-10-31 10:15:53 +08:00 
			
		
		
		
	| @@ -27,6 +27,10 @@ And then in any new shell just use the installed version: | ||||
|  | ||||
|     nvm use v0.4.1 | ||||
|  | ||||
| Or you can just run it: | ||||
|  | ||||
|     nvm run v0.4.1 | ||||
|  | ||||
| If you want to see what versions are available: | ||||
|  | ||||
|     nvm ls | ||||
|   | ||||
							
								
								
									
										14
									
								
								nvm.sh
									
									
									
									
									
								
							
							
						
						
									
										14
									
								
								nvm.sh
									
									
									
									
									
								
							| @@ -188,6 +188,20 @@ nvm() | ||||
|       export NVM_BIN="$NVM_DIR/$VERSION/bin" | ||||
|       echo "Now using node $VERSION" | ||||
|     ;; | ||||
|     "run" ) | ||||
|       # run given version of node | ||||
|       if [ $# -lt 2 ]; then | ||||
|         nvm help | ||||
|         return | ||||
|       fi | ||||
|       VERSION=`nvm_version $2` | ||||
|       if [ ! -d $NVM_DIR/$VERSION ]; then | ||||
|         echo "$VERSION version is not installed yet" | ||||
|         return; | ||||
|       fi | ||||
|       echo "Running node $VERSION" | ||||
|       $NVM_DIR/$VERSION/bin/node "${@:3}" | ||||
|     ;; | ||||
|     "ls" | "list" ) | ||||
|       if [ $# -ne 1 ]; then | ||||
|         nvm_version $2 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user