nvm icon indicating copy to clipboard operation
nvm copied to clipboard

Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions

Results 370 nvm issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi All, trying pulling in nvm into the dev machine seeing below error : nvm_echo >&2 "Failed to checkout the given version $NVM_VERSION. Please report this!" more logs : `*...

Problem: npm man pages are not working for me when I run: $ man npm Reason: npm man pages path (~NODE_PATH/npm/man) is not in $MANPATH Solution: npm man pages path...

feature requests
needs followup

``` export PATH="${HOME}/.nvm/versions/node/default/bin:$PATH" export PATH="${HOME}/.nvm/versions/node/default/lib:$PATH" export PATH="${HOME}/.nvm/versions/node/default/include:$PATH" export PATH="${HOME}/.nvm/versions/node/default/share:$PATH" ``` adding the above to ./nvm/nvm.sh also removing: ``` # nvm_process_parameters() { # local NVM_AUTO_MODE # NVM_AUTO_MODE='use' # while [ "$#"...

#### Operating system and version: [MacOS 13.6.5](https://github.com/actions/runner-images/blob/macos-13/20240327.2/images/macos/macos-13-Readme.md) #### `nvm debug` output: ```sh nvm: command not found ``` #### `nvm ls` output: ```sh nvm: command not found ``` #### How did...

> I ran into this as an installation failure when installing `nvm` on a PC using some `git` configuration customizations. Since `git` may be configured locally to use a non-'origin'...

pull request wanted

This is my dockerfile which I am using for installing multiple versions of node . FROM ubuntu ENV NVM_DIR /usr/local/nvm RUN mkdir -p $NVM_DIR RUN curl https://raw.githubusercontent.com/creationix/nvm/v0.39.7/install.sh | bash &&...

Replaces #1625 which was abandoned. Resolves #794. I rebased the latest changes of the `master` branch and fixed an issue with the changes made to `nvm_find_up()`.

I see that nvm checks nodejs versions against a copy of SHASUMS256.txt which [it downloads](https://github.com/nvm-sh/nvm/blob/master/nvm.sh#L1703) from the same mirror that it downloads nodejs. This verification is not without value as-is,...

feature requests