Cross.Platform
made by https://0x3d.site
GitHub - nvm-sh/nvm: Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versionsNode Version Manager - POSIX-compliant bash script to manage multiple active node.js versions - nvm-sh/nvm
Visit Site
GitHub - nvm-sh/nvm: Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions
Node Version Manager
Table of Contents
- Intro
- About
- Installing and Updating
- Usage
- Running Tests
- Environment variables
- Bash Completion
- Compatibility Issues
- Installing nvm on Alpine Linux
- Uninstalling / Removal
- Docker For Development Environment
- Problems
- macOS Troubleshooting
- WSL Troubleshooting
- Maintainers
- Project Support
- Enterprise Support
- License
- Copyright notice
Intro
nvm
allows you to quickly install and use different versions of node via the command line.
Example:
$ nvm use 16
Now using node v16.9.1 (npm v7.21.1)
$ node -v
v16.9.1
$ nvm use 14
Now using node v14.18.0 (npm v6.14.15)
$ node -v
v14.18.0
$ nvm install 12
Now using node v12.22.6 (npm v6.14.5)
$ node -v
v12.22.6
Simple as that!
About
nvm is a version manager for node.js, designed to be installed per-user, and invoked per-shell. nvm
works on any POSIX-compliant shell (sh, dash, ksh, zsh, bash), in particular on these platforms: unix, macOS, and windows WSL.
Installing and Updating
Install & Update Script
To install or update nvm, you should run the install script. To do that, you may either download and run the script manually, or use the following cURL or Wget command:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
Running either of the above commands downloads a script and runs it. The script clones the nvm repository to ~/.nvm
, and attempts to add the source lines from the snippet below to the correct profile file (~/.bash_profile
, ~/.zshrc
, ~/.profile
, or ~/.bashrc
).
export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
Additional Notes
-
If the environment variable
$XDG_CONFIG_HOME
is present, it will place thenvm
files there. -
You can add
--no-use
to the end of the above script (...nvm.sh --no-use
) to postpone usingnvm
until you manuallyuse
it. -
You can customize the install source, directory, profile, and version using the
NVM_SOURCE
,NVM_DIR
,PROFILE
, andNODE_VERSION
variables. Eg:curl ... | NVM_DIR="path/to/nvm"
. Ensure that theNVM_DIR
does not contain a trailing slash. -
The installer can use
git
,curl
, orwget
to downloadnvm
, whichever is available. -
You can instruct the installer to not edit your shell config (for example if you already get completions via a zsh nvm plugin) by setting
PROFILE=/dev/null
before running theinstall.sh
script. Here's an example one-line command to do that:PROFILE=/dev/null bash -c 'curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash'
Troubleshooting on Linux
On Linux, after running the install script, if you get nvm: command not found
or see no feedback from your terminal after you type command -v nvm
, simply close your current terminal, open a new terminal, and try verifying again.
Alternatively, you can run the following commands for the different shells on the command line:
bash: source ~/.bashrc
zsh: source ~/.zshrc
ksh: . ~/.profile
These should pick up the nvm
command.
Troubleshooting on macOS
Since OS X 10.9, /usr/bin/git
has been preset by Xcode command line tools, which means we can't properly detect if Git is installed or not. You need to manually install the Xcode command line tools before running the install script, otherwise, it'll fail. (see #1782)
If you get nvm: command not found
after running the install script, one of the following might be the reason:
-
Since macOS 10.15, the default shell is
zsh
and nvm will look for.zshrc
to update, none is installed by default. Create one withtouch ~/.zshrc
and run the install script again. -
If you use bash, the previous default shell, your system may not have
.bash_profile
or.bashrc
files where the command is set up. Create one of them withtouch ~/.bash_profile
ortouch ~/.bashrc
and run the install script again. Then, run. ~/.bash_profile
or. ~/.bashrc
to pick up thenvm
command. -
You have previously used
bash
, but you havezsh
installed. You need to manually add these lines to~/.zshrc
and run. ~/.zshrc
. -
You might need to restart your terminal instance or run
. ~/.nvm/nvm.sh
. Restarting your terminal/opening a new tab/window, or running the source command will load the command and the new configuration. -
If the above didn't help, you might need to restart your terminal instance. Try opening a new tab/window in your terminal and retry.
If the above doesn't fix the problem, you may try the following:
-
If you use bash, it may be that your
.bash_profile
(or~/.profile
) does not source your~/.bashrc
properly. You could fix this by addingsource ~/<your_profile_file>
to it or following the next step below. -
Try adding the snippet from the install section, that finds the correct nvm directory and loads nvm, to your usual profile (
~/.bash_profile
,~/.zshrc
,~/.profile
, or~/.bashrc
). -
For more information about this issue and possible workarounds, please refer here
Note For Macs with the Apple Silicon chip, node started offering arm64 arch Darwin packages since v16.0.0 and experimental arm64 support when compiling from source since v14.17.0. If you are facing issues installing node using nvm
, you may want to update to one of those versions or later.
Ansible
You can use a task:
- name: Install nvm
ansible.builtin.shell: >
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
args:
creates: "{{ ansible_env.HOME }}/.nvm/nvm.sh"
Verify Installation
To verify that nvm has been installed, do:
command -v nvm
which should output nvm
if the installation was successful. Please note that which nvm
will not work, since nvm
is a sourced shell function, not an executable binary.
Note: On Linux, after running the install script, if you get nvm: command not found
or see no feedback from your terminal after you type command -v nvm
, simply close your current terminal, open a new terminal, and try verifying again.
Important Notes
If you're running a system without prepackaged binary available, which means you're going to install node or io.js from its source code, you need to make sure your system has a C++ compiler. For OS X, Xcode will work, for Debian/Ubuntu based GNU/Linux, the build-essential
and libssl-dev
packages work.
Note: nvm
also supports Windows in some cases. It should work through WSL (Windows Subsystem for Linux) depending on the version of WSL. It should also work with GitBash (MSYS) or Cygwin. Otherwise, for Windows, a few alternatives exist, which are neither supported nor developed by us:
Note: nvm
does not support Fish either (see #303). Alternatives exist, which are neither supported nor developed by us:
- bass allows you to use utilities written for Bash in fish shell
- fast-nvm-fish only works with version numbers (not aliases) but doesn't significantly slow your shell startup
- plugin-nvm plugin for Oh My Fish, which makes nvm and its completions available in fish shell
- fnm - fisherman-based version manager for fish
- fish-nvm - Wrapper around nvm for fish, delays sourcing nvm until it's actually used.
Note: We still have some problems with FreeBSD, because there is no official pre-built binary for FreeBSD, and building from source may need patches; see the issue ticket:
Note: On OS X, if you do not have Xcode installed and you do not wish to download the ~4.3GB file, you can install the Command Line Tools
. You can check out this blog post on how to just that:
Note: On OS X, if you have/had a "system" node installed and want to install modules globally, keep in mind that:
- When using
nvm
you do not needsudo
to globally install a module withnpm -g
, so instead of doingsudo npm install -g grunt
, do insteadnpm install -g grunt
- If you have an
~/.npmrc
file, make sure it does not contain anyprefix
settings (which is not compatible withnvm
) - You can (but should not?) keep your previous "system" node install, but
nvm
will only be available to your user account (the one used to install nvm). This might cause version mismatches, as other users will be using/usr/local/lib/node_modules/*
VS your user account using~/.nvm/versions/node/vX.X.X/lib/node_modules/*
Homebrew installation is not supported. If you have issues with homebrew-installed nvm
, please brew uninstall
it, and install it using the instructions below, before filing an issue.
Note: If you're using zsh
you can easily install nvm
as a zsh plugin. Install zsh-nvm
and run nvm upgrade
to upgrade.
Note: Git versions before v1.7 may face a problem of cloning nvm
source from GitHub via https protocol, and there is also different behavior of git before v1.6, and git prior to v1.17.10 can not clone tags, so the minimum required git version is v1.7.10. If you are interested in the problem we mentioned here, please refer to GitHub's HTTPS cloning errors article.
Git Install
If you have git
installed (requires git v1.7.10+):
- clone this repo in the root of your user profile
cd ~/
from anywhere thengit clone https://github.com/nvm-sh/nvm.git .nvm
cd ~/.nvm
and check out the latest version withgit checkout v0.40.1
- activate
nvm
by sourcing it from your shell:. ./nvm.sh
Now add these lines to your ~/.bashrc
, ~/.profile
, or ~/.zshrc
file to have it automatically sourced upon login:
(you may have to add to more than one of the above files)
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
Manual Install
For a fully manual install, execute the following lines to first clone the nvm
repository into $HOME/.nvm
, and then load nvm
:
export NVM_DIR="$HOME/.nvm" && (
git clone https://github.com/nvm-sh/nvm.git "$NVM_DIR"
cd "$NVM_DIR"
git checkout `git describe --abbrev=0 --tags --match "v[0-9]*" $(git rev-list --tags --max-count=1)`
) && \. "$NVM_DIR/nvm.sh"
Now add these lines to your ~/.bashrc
, ~/.profile
, or ~/.zshrc
file to have it automatically sourced upon login:
(you may have to add to more than one of the above files)
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
Manual Upgrade
For manual upgrade with git
(requires git v1.7.10+):
- change to the
$NVM_DIR
- pull down the latest changes
- check out the latest version
- activate the new version
(
cd "$NVM_DIR"
git fetch --tags origin
git checkout `git describe --abbrev=0 --tags --match "v[0-9]*" $(git rev-list --tags --max-count=1)`
) && \. "$NVM_DIR/nvm.sh"
Usage
To download, compile, and install the latest release of node, do this:
nvm install node # "node" is an alias for the latest version
To install a specific version of node:
nvm install 14.7.0 # or 16.3.0, 12.22.1, etc
To set an alias:
nvm alias my_alias v14.4.0
Make sure that your alias does not contain any spaces or slashes.
The first version installed becomes the default. New shells will start with the default version of node (e.g., nvm alias default
).
You can list available versions using ls-remote
:
nvm ls-remote
And then in any new shell just use the installed version:
nvm use node
Or you can just run it:
nvm run node --version
Or, you can run any arbitrary command in a subshell with the desired version of node:
nvm exec 4.2 node --version
You can also get the path to the executable to where it was installed:
nvm which 12.22
In place of a version pointer like "14.7" or "16.3" or "12.22.1", you can use the following special default aliases with nvm install
, nvm use
, nvm run
, nvm exec
, nvm which
, etc:
node
: this installs the latest version ofnode
iojs
: this installs the latest version ofio.js
stable
: this alias is deprecated, and only truly applies tonode
v0.12
and earlier. Currently, this is an alias fornode
.unstable
: this alias points tonode
v0.11
- the last "unstable" node release, since post-1.0, all node versions are stable. (in SemVer, versions communicate breakage, not stability).
Long-term Support
Node has a schedule for long-term support (LTS) You can reference LTS versions in aliases and .nvmrc
files with the notation lts/*
for the latest LTS, and lts/argon
for LTS releases from the "argon" line, for example. In addition, the following commands support LTS arguments:
nvm install --lts
/nvm install --lts=argon
/nvm install 'lts/*'
/nvm install lts/argon
nvm uninstall --lts
/nvm uninstall --lts=argon
/nvm uninstall 'lts/*'
/nvm uninstall lts/argon
nvm use --lts
/nvm use --lts=argon
/nvm use 'lts/*'
/nvm use lts/argon
nvm exec --lts
/nvm exec --lts=argon
/nvm exec 'lts/*'
/nvm exec lts/argon
nvm run --lts
/nvm run --lts=argon
/nvm run 'lts/*'
/nvm run lts/argon
nvm ls-remote --lts
/nvm ls-remote --lts=argon
nvm ls-remote 'lts/*'
/nvm ls-remote lts/argon
nvm version-remote --lts
/nvm version-remote --lts=argon
/nvm version-remote 'lts/*'
/nvm version-remote lts/argon
Any time your local copy of nvm
connects to https://nodejs.org, it will re-create the appropriate local aliases for all available LTS lines. These aliases (stored under $NVM_DIR/alias/lts
), are managed by nvm
, and you should not modify, remove, or create these files - expect your changes to be undone, and expect meddling with these files to cause bugs that will likely not be supported.
To get the latest LTS version of node and migrate your existing installed packages, use
nvm install --reinstall-packages-from=current 'lts/*'
Migrating Global Packages While Installing
If you want to install a new version of Node.js and migrate npm packages from a previous version:
nvm install --reinstall-packages-from=node node
This will first use "nvm version node" to identify the current version you're migrating packages from. Then it resolves the new version to install from the remote server and installs it. Lastly, it runs "nvm reinstall-packages" to reinstall the npm packages from your prior version of Node to the new one.
You can also install and migrate npm packages from specific versions of Node like this:
nvm install --reinstall-packages-from=5 6
nvm install --reinstall-packages-from=iojs v4.2
Note that reinstalling packages explicitly does not update the npm version — this is to ensure that npm isn't accidentally upgraded to a broken version for the new node version.
To update npm at the same time add the --latest-npm
flag, like this:
nvm install --reinstall-packages-from=default --latest-npm 'lts/*'
or, you can at any time run the following command to get the latest supported npm version on the current node version:
nvm install-latest-npm
If you've already gotten an error to the effect of "npm does not support Node.js", you'll need to (1) revert to a previous node version (nvm ls
& nvm use <your latest _working_ version from the ls>
), (2) delete the newly created node version (nvm uninstall <your _broken_ version of node from the ls>
), then (3) rerun your nvm install
with the --latest-npm
flag.
Default Global Packages From File While Installing
If you have a list of default packages you want installed every time you install a new version, we support that too -- just add the package names, one per line, to the file $NVM_DIR/default-packages
. You can add anything npm would accept as a package argument on the command line.
# $NVM_DIR/default-packages
rimraf
[email protected]
stevemao/left-pad
io.js
If you want to install io.js:
nvm install iojs
If you want to install a new version of io.js and migrate npm packages from a previous version:
nvm install --reinstall-packages-from=iojs iojs
The same guidelines mentioned for migrating npm packages in node are applicable to io.js.
System Version of Node
If you want to use the system-installed version of node, you can use the special default alias "system":
nvm use system
nvm run system --version
Listing Versions
If you want to see what versions are installed:
nvm ls
If you want to see what versions are available to install:
nvm ls-remote
Setting Custom Colors
You can set five colors that will be used to display version and alias information. These colors replace the default colors. Initial colors are: g b y r e
Color codes:
r/R = red / bold red
g/G = green / bold green
b/B = blue / bold blue
c/C = cyan / bold cyan
m/M = magenta / bold magenta
y/Y = yellow / bold yellow
k/K = black / bold black
e/W = light grey / white
nvm set-colors rgBcm
Persisting custom colors
If you want the custom colors to persist after terminating the shell, export the NVM_COLORS
variable in your shell profile. For example, if you want to use cyan, magenta, green, bold red and bold yellow, add the following line:
export NVM_COLORS='cmgRY'
Suppressing colorized output
nvm help (or -h or --help)
, nvm ls
, nvm ls-remote
and nvm alias
usually produce colorized output. You can disable colors with the --no-colors
option (or by setting the environment variable TERM=dumb
):
nvm ls --no-colors
nvm help --no-colors
TERM=dumb nvm ls
Restoring PATH
To restore your PATH, you can deactivate it:
nvm deactivate
Set default node version
To set a default Node version to be used in any new shell, use the alias 'default':
nvm alias default node # this refers to the latest installed version of node
nvm alias default 18 # this refers to the latest installed v18.x version of node
nvm alias default 18.12 # this refers to the latest installed v18.12.x version of node
Use a mirror of node binaries
To use a mirror of the node binaries, set $NVM_NODEJS_ORG_MIRROR
:
export NVM_NODEJS_ORG_MIRROR=https://nodejs.org/dist
nvm install node
NVM_NODEJS_ORG_MIRROR=https://nodejs.org/dist nvm install 4.2
To use a mirror of the io.js binaries, set $NVM_IOJS_ORG_MIRROR
:
export NVM_IOJS_ORG_MIRROR=https://iojs.org/dist
nvm install iojs-v1.0.3
NVM_IOJS_ORG_MIRROR=https://iojs.org/dist nvm install iojs-v1.0.3
nvm use
will not, by default, create a "current" symlink. Set $NVM_SYMLINK_CURRENT
to "true" to enable this behavior, which is sometimes useful for IDEs. Note that using nvm
in multiple shell tabs with this environment variable enabled can cause race conditions.
Pass Authorization header to mirror
To pass an Authorization header through to the mirror url, set $NVM_AUTH_HEADER
NVM_AUTH_HEADER="Bearer secret-token" nvm install node
.nvmrc
You can create a .nvmrc
file containing a node version number (or any other string that nvm
understands; see nvm --help
for details) in the project root directory (or any parent directory).
Afterwards, nvm use
, nvm install
, nvm exec
, nvm run
, and nvm which
will use the version specified in the .nvmrc
file if no version is supplied on the command line.
For example, to make nvm default to the latest 5.9 release, the latest LTS version, or the latest node version for the current directory:
$ echo "5.9" > .nvmrc
$ echo "lts/*" > .nvmrc # to default to the latest LTS version
$ echo "node" > .nvmrc # to default to the latest version
[NB these examples assume a POSIX-compliant shell version of echo
. If you use a Windows cmd
development environment, eg the .nvmrc
file is used to configure a remote Linux deployment, then keep in mind the "
s will be copied leading to an invalid file. Remove them.]
Then when you run nvm use:
$ nvm use
Found '/path/to/project/.nvmrc' with version <5.9>
Now using node v5.9.1 (npm v3.7.3)
Running nvm install will also switch over to the correct version, but if the correct node version isn't already installed, it will install it for you.
$ nvm install
Found '/path/to/project/.nvmrc' with version <5.9>
Downloading and installing node v5.9.1...
Downloading https://nodejs.org/dist/v5.9.1/node-v5.9.1-linux-x64.tar.xz...
#################################################################################### 100.0%
Computing checksum with sha256sum
Checksums matched!
Now using node v5.9.1 (npm v3.7.3)
nvm use
et. al. will traverse directory structure upwards from the current directory looking for the .nvmrc
file. In other words, running nvm use
et. al. in any subdirectory of a directory with an .nvmrc
will result in that .nvmrc
being utilized.
The contents of a .nvmrc
file must contain precisely one <version>
(as described by nvm --help
) followed by a newline. .nvmrc
files may also have comments. The comment delimiter is #
, and it and any text after it, as well as blank lines, and leading and trailing white space, will be ignored when parsing.
Key/value pairs using =
are also allowed and ignored, but are reserved for future use, and may cause validation errors in the future.
Run npx nvmrc
to validate an .nvmrc
file. If that tool’s results do not agree with nvm, one or the other has a bug - please file an issue.
Deeper Shell Integration
You can use avn
to deeply integrate into your shell and automatically invoke nvm
when changing directories. avn
is not supported by the nvm
maintainers. Please report issues to the avn
team.
You can also use nvshim
to shim the node
, npm
, and npx
bins to automatically use the nvm
config in the current directory. nvshim
is not supported by the nvm
maintainers. Please report issues to the nvshim
team.
If you prefer a lighter-weight solution, the recipes below have been contributed by nvm
users. They are not supported by the nvm
maintainers. We are, however, accepting pull requests for more examples.
Calling nvm use
automatically in a directory with a .nvmrc
file
In your profile (~/.bash_profile
, ~/.zshrc
, ~/.profile
, or ~/.bashrc
), add the following to nvm use
whenever you enter a new directory:
bash
Put the following at the end of your $HOME/.bashrc
:
cdnvm() {
command cd "$@" || return $?
nvm_path="$(nvm_find_up .nvmrc | command tr -d '\n')"
# If there are no .nvmrc file, use the default nvm version
if [[ ! $nvm_path = *[^[:space:]]* ]]; then
declare default_version
default_version="$(nvm version default)"
# If there is no default version, set it to `node`
# This will use the latest version on your machine
if [ $default_version = 'N/A' ]; then
nvm alias default node
default_version=$(nvm version default)
fi
# If the current version is not the default version, set it to use the default version
if [ "$(nvm current)" != "${default_version}" ]; then
nvm use default
fi
elif [[ -s "${nvm_path}/.nvmrc" && -r "${nvm_path}/.nvmrc" ]]; then
declare nvm_version
nvm_version=$(<"${nvm_path}"/.nvmrc)
declare locally_resolved_nvm_version
# `nvm ls` will check all locally-available versions
# If there are multiple matching versions, take the latest one
# Remove the `->` and `*` characters and spaces
# `locally_resolved_nvm_version` will be `N/A` if no local versions are found
locally_resolved_nvm_version=$(nvm ls --no-colors "${nvm_version}" | command tail -1 | command tr -d '\->*' | command tr -d '[:space:]')
# If it is not already installed, install it
# `nvm install` will implicitly use the newly-installed version
if [ "${locally_resolved_nvm_version}" = 'N/A' ]; then
nvm install "${nvm_version}";
elif [ "$(nvm current)" != "${locally_resolved_nvm_version}" ]; then
nvm use "${nvm_version}";
fi
fi
}
alias cd='cdnvm'
cdnvm "$PWD" || exit
This alias would search 'up' from your current directory in order to detect a .nvmrc
file. If it finds it, it will switch to that version; if not, it will use the default version.
zsh
This shell function will install (if needed) and nvm use
the specified Node version when an .nvmrc
is found, and nvm use default
otherwise.
Put this into your $HOME/.zshrc
to call nvm use
automatically whenever you enter a directory that contains an
.nvmrc
file with a string telling nvm which node to use
:
# place this after nvm initialization!
autoload -U add-zsh-hook
load-nvmrc() {
local nvmrc_path
nvmrc_path="$(nvm_find_nvmrc)"
if [ -n "$nvmrc_path" ]; then
local nvmrc_node_version
nvmrc_node_version=$(nvm version "$(cat "${nvmrc_path}")")
if [ "$nvmrc_node_version" = "N/A" ]; then
nvm install
elif [ "$nvmrc_node_version" != "$(nvm version)" ]; then
nvm use
fi
elif [ -n "$(PWD=$OLDPWD nvm_find_nvmrc)" ] && [ "$(nvm version)" != "$(nvm version default)" ]; then
echo "Reverting to nvm default version"
nvm use default
fi
}
add-zsh-hook chpwd load-nvmrc
load-nvmrc
fish
This requires that you have bass installed.
# ~/.config/fish/functions/nvm.fish
function nvm
bass source ~/.nvm/nvm.sh --no-use ';' nvm $argv
end
# ~/.config/fish/functions/nvm_find_nvmrc.fish
function nvm_find_nvmrc
bass source ~/.nvm/nvm.sh --no-use ';' nvm_find_nvmrc
end
# ~/.config/fish/functions/load_nvm.fish
function load_nvm --on-variable="PWD"
set -l default_node_version (nvm version default)
set -l node_version (nvm version)
set -l nvmrc_path (nvm_find_nvmrc)
if test -n "$nvmrc_path"
set -l nvmrc_node_version (nvm version (cat $nvmrc_path))
if test "$nvmrc_node_version" = "N/A"
nvm install (cat $nvmrc_path)
else if test "$nvmrc_node_version" != "$node_version"
nvm use $nvmrc_node_version
end
else if test "$node_version" != "$default_node_version"
echo "Reverting to default Node version"
nvm use default
end
end
# ~/.config/fish/config.fish
# You must call it on initialization or listening to directory switching won't work
load_nvm > /dev/stderr
Running Tests
Tests are written in Urchin. Install Urchin (and other dependencies) like so:
npm install
There are slow tests and fast tests. The slow tests do things like install node and check that the right versions are used. The fast tests fake this to test things like aliases and uninstalling. From the root of the nvm git repository, run the fast tests like this:
npm run test/fast
Run the slow tests like this:
npm run test/slow
Run all of the tests like this:
npm test
Nota bene: Avoid running nvm while the tests are running.
Environment variables
nvm exposes the following environment variables:
NVM_DIR
- nvm's installation directory.NVM_BIN
- where node, npm, and global packages for the active version of node are installed.NVM_INC
- node's include file directory (useful for building C/C++ addons for node).NVM_CD_FLAGS
- used to maintain compatibility with zsh.NVM_RC_VERSION
- version from .nvmrc file if being used.
Additionally, nvm modifies PATH
, and, if present, MANPATH
and NODE_PATH
when changing versions.
Bash Completion
To activate, you need to source bash_completion
:
[[ -r $NVM_DIR/bash_completion ]] && \. $NVM_DIR/bash_completion
Put the above sourcing line just below the sourcing line for nvm in your profile (.bashrc
, .bash_profile
).
Usage
nvm:
$ nvm
Tab
alias deactivate install list-remote reinstall-packages uninstall version
cache exec install-latest-npm ls run unload version-remote
current help list ls-remote unalias use which
nvm alias:
$ nvm alias
Tab
default iojs lts/* lts/argon lts/boron lts/carbon lts/dubnium lts/erbium node stable unstable
$ nvm alias my_alias
Tab
v10.22.0 v12.18.3 v14.8.0
nvm use:
$ nvm use
Tab
my_alias default v10.22.0 v12.18.3 v14.8.0
nvm uninstall:
$ nvm uninstall
Tab
my_alias default v10.22.0 v12.18.3 v14.8.0
Compatibility Issues
nvm
will encounter some issues if you have some non-default settings set. (see #606)
The following are known to cause issues:
Inside ~/.npmrc
:
prefix='some/path'
Environment Variables:
$NPM_CONFIG_PREFIX
$PREFIX
Shell settings:
set -e
Installing nvm on Alpine Linux
In order to provide the best performance (and other optimizations), nvm will download and install pre-compiled binaries for Node (and npm) when you run nvm install X
. The Node project compiles, tests and hosts/provides these pre-compiled binaries which are built for mainstream/traditional Linux distributions (such as Debian, Ubuntu, CentOS, RedHat et al).
Alpine Linux, unlike mainstream/traditional Linux distributions, is based on BusyBox, a very compact (~5MB) Linux distribution. BusyBox (and thus Alpine Linux) uses a different C/C++ stack to most mainstream/traditional Linux distributions - musl. This makes binary programs built for such mainstream/traditional incompatible with Alpine Linux, thus we cannot simply nvm install X
on Alpine Linux and expect the downloaded binary to run correctly - you'll likely see "...does not exist" errors if you try that.
There is a -s
flag for nvm install
which requests nvm download Node source and compile it locally.
If installing nvm on Alpine Linux is still what you want or need to do, you should be able to achieve this by running the following from you Alpine Linux shell, depending on which version you are using:
Alpine Linux 3.13+
apk add -U curl bash ca-certificates openssl ncurses coreutils python3 make gcc g++ libgcc linux-headers grep util-linux binutils findutils
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
Alpine Linux 3.5 - 3.12
apk add -U curl bash ca-certificates openssl ncurses coreutils python2 make gcc g++ libgcc linux-headers grep util-linux binutils findutils
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
Note: Alpine 3.5 can only install NodeJS versions up to v6.9.5, Alpine 3.6 can only install versions up to v6.10.3, Alpine 3.7 installs versions up to v8.9.3, Alpine 3.8 installs versions up to v8.14.0, Alpine 3.9 installs versions up to v10.19.0, Alpine 3.10 installs versions up to v10.24.1, Alpine 3.11 installs versions up to v12.22.6, Alpine 3.12 installs versions up to v12.22.12, Alpine 3.13 & 3.14 install versions up to v14.20.0, Alpine 3.15 & 3.16 install versions up to v16.16.0 (These are all versions on the main branch). Alpine 3.5 - 3.12 required the package python2
to build NodeJS, as they are older versions to build. Alpine 3.13+ requires python3
to successfully build newer NodeJS versions, but you can use python2
with Alpine 3.13+ if you need to build versions of node supported in Alpine 3.5 - 3.15, you just need to specify what version of NodeJS you need to install in the package install script.
The Node project has some desire but no concrete plans (due to the overheads of building, testing and support) to offer Alpine-compatible binaries.
As a potential alternative, @mhart (a Node contributor) has some Docker images for Alpine Linux with Node and optionally, npm, pre-installed.
Uninstalling / Removal
Manual Uninstall
To remove nvm
manually, execute the following:
First, use nvm unload
to remove the nvm command from your terminal session and delete the installation directory:
$ nvm_dir="${NVM_DIR:-~/.nvm}"
$ nvm unload
$ rm -rf "$nvm_dir"
Edit ~/.bashrc
(or other shell resource config) and remove the lines below:
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[[ -r $NVM_DIR/bash_completion ]] && \. $NVM_DIR/bash_completion
Docker For Development Environment
To make the development and testing work easier, we have a Dockerfile for development usage, which is based on Ubuntu 18.04 base image, prepared with essential and useful tools for nvm
development, to build the docker image of the environment, run the docker command at the root of nvm
repository:
$ docker build -t nvm-dev .
This will package your current nvm repository with our pre-defined development environment into a docker image named nvm-dev
, once it's built with success, validate your image via docker images
:
$ docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
nvm-dev latest 9ca4c57a97d8 7 days ago 650 MB
If you got no error message, now you can easily involve in:
$ docker run -h nvm-dev -it nvm-dev
nvm@nvm-dev:~/.nvm$
Please note that it'll take about 8 minutes to build the image and the image size would be about 650MB, so it's not suitable for production usage.
For more information and documentation about docker, please refer to its official website:
Problems
-
If you try to install a node version and the installation fails, be sure to run
nvm cache clear
to delete cached node downloads, or you might get an error like the following:curl: (33) HTTP server doesn't seem to support byte ranges. Cannot resume.
-
Where's my
sudo node
? Check out #43 -
After the v0.8.6 release of node, nvm tries to install from binary packages. But in some systems, the official binary packages don't work due to incompatibility of shared libs. In such cases, use
-s
option to force install from source:
nvm install -s 0.8.6
- If setting the
default
alias does not establish the node version in new shells (i.e.nvm current
yieldssystem
), ensure that the system's nodePATH
is set before thenvm.sh
source line in your shell profile (see #658)
macOS Troubleshooting
nvm node version not found in vim shell
If you set node version to a version other than your system node version nvm use 6.2.1
and open vim and run :!node -v
you should see v6.2.1
if you see your system version v0.12.7
. You need to run:
sudo chmod ugo-x /usr/libexec/path_helper
More on this issue in dotphiles/dotzsh.
nvm is not compatible with the npm config "prefix" option
Some solutions for this issue can be found here
There is one more edge case causing this issue, and that's a mismatch between the $HOME
path and the user's home directory's actual name.
You have to make sure that the user directory name in $HOME
and the user directory name you'd see from running ls /Users/
are capitalized the same way (See this issue).
To change the user directory and/or account name follow the instructions here
Homebrew makes zsh directories unsecure
zsh compinit: insecure directories, run compaudit for list.
Ignore insecure directories and continue [y] or abort compinit [n]? y
Homebrew causes insecure directories like /usr/local/share/zsh/site-functions
and /usr/local/share/zsh
. This is not an nvm
problem - it is a homebrew problem. Refer here for some solutions related to the issue.
Macs with Apple Silicon chips
Experimental support for the Apple Silicon chip architecture was added in node.js v15.3 and full support was added in v16.0. Because of this, if you try to install older versions of node as usual, you will probably experience either compilation errors when installing node or out-of-memory errors while running your code.
So, if you want to run a version prior to v16.0 on an Apple Silicon Mac, it may be best to compile node targeting the x86_64
Intel architecture so that Rosetta 2 can translate the x86_64
processor instructions to ARM-based Apple Silicon instructions.
Here's what you will need to do:
-
Install Rosetta, if you haven't already done so
$ softwareupdate --install-rosetta
You might wonder, "how will my Apple Silicon Mac know to use Rosetta for a version of node compiled for an Intel chip?". If an executable contains only Intel instructions, macOS will automatically use Rosetta to translate the instructions.
-
Open a shell that's running using Rosetta
$ arch -x86_64 zsh
Note: This same thing can also be accomplished by finding the Terminal or iTerm App in Finder, right clicking, selecting "Get Info", and then checking the box labeled "Open using Rosetta".
Note: This terminal session is now running in
zsh
. Ifzsh
is not the shell you typically use,nvm
may not besource
'd automatically like it probably is for your usual shell through your dotfiles. If that's the case, make sure to sourcenvm
.$ source "${NVM_DIR}/nvm.sh"
-
Install whatever older version of node you are interested in. Let's use 12.22.1 as an example. This will fetch the node source code and compile it, which will take several minutes.
$ nvm install v12.22.1 --shared-zlib
Note: You're probably curious why
--shared-zlib
is included. There's a bug in recent versions of Apple's systemclang
compiler. If one of these broken versions is installed on your system, the above step will likely still succeed even if you didn't include the--shared-zlib
flag. However, later, when you attempt tonpm install
something using your old version of node.js, you will seeincorrect data check
errors. If you want to avoid the possible hassle of dealing with this, include that flag. For more details, see this issue and this comment -
Exit back to your native shell.
$ exit $ arch arm64
Note: If you selected the box labeled "Open using Rosetta" rather than running the CLI command in the second step, you will see
i386
here. Unless you have another reason to have that box selected, you can deselect it now. -
Check to make sure the architecture is correct.
x64
is the abbreviation forx86_64
, which is what you want to see.$ node -p process.arch x64
Now you should be able to use node as usual.
WSL Troubleshooting
If you've encountered this error on WSL-2:
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- 0:00:09 --:--:-- 0curl: (6) Could not resolve host: raw.githubusercontent.com
It may be due to your antivirus, VPN, or other reasons.
Where you can ping 8.8.8.8
while you can't ping google.com
This could simply be solved by running this in your root directory:
sudo rm /etc/resolv.conf
sudo bash -c 'echo "nameserver 8.8.8.8" > /etc/resolv.conf'
sudo bash -c 'echo "[network]" > /etc/wsl.conf'
sudo bash -c 'echo "generateResolvConf = false" >> /etc/wsl.conf'
sudo chattr +i /etc/resolv.conf
This deletes your resolv.conf
file that is automatically generated when you run WSL, creates a new file and puts nameserver 8.8.8.8
, then creates a wsl.conf
file and adds [network]
and generateResolveConf = false
to prevent auto-generation of that file.
You can check the contents of the file by running:
cat /etc/resolv.conf
Maintainers
Currently, the sole maintainer is @ljharb - more maintainers are quite welcome, and we hope to add folks to the team over time. Governance will be re-evaluated as the project evolves.
Project Support
Only the latest version (v0.40.1 at this time) is supported.
Enterprise Support
If you are unable to update to the latest version of nvm
, our partners provide commercial security fixes for all unsupported versions:
License
See LICENSE.md.
Copyright notice
Copyright OpenJS Foundation and nvm
contributors. All rights reserved. The OpenJS Foundation has registered trademarks and uses trademarks. For a list of trademarks of the OpenJS Foundation, please see our Trademark Policy and Trademark List. Node.js is a trademark of Joyent, Inc. and is used with its permission. Trademarks and logos not indicated on the list of OpenJS Foundation trademarks are trademarks™ or registered® trademarks of their respective holders. Use of them does not imply any affiliation with or endorsement by them.
The OpenJS Foundation | Terms of Use | Privacy Policy | OpenJS Foundation Bylaws | Trademark Policy | Trademark List | Cookie Policy
Articlesto learn more about the cross-platform concepts.
- 1Introduction to Cross-Platform Development: What You Need to Know
- 2Top Cross-Platform Development Frameworks: A Comparative Analysis
- 3React Native vs. Flutter: Which Framework is Right for You?
- 4Cross-Platform Development with Node.js: A Complete Guide
- 5Cross-Platform App Development with Kotlin Multiplatform: A Complete Guide
- 6Using Electron for Cross-Platform Desktop Applications: A Complete Guide
- 7Cross-Platform Mobile Apps vs. Native Apps: Pros and Cons
- 8Cross-Platform App Development for IoT: A New Frontier
- 9Using Progressive Web Apps (PWAs) for Cross-Platform Development
- 10Monetizing Cross-Platform Apps: Strategies for Success
Resourceswhich are currently available to browse on.
mail [email protected] to add your project or resources here 🔥.
- 1Accelerated Container Application Development
https://www.docker.com/
Docker is a platform designed to help developers build, share, and run container applications. We handle the tedious setup, so you can focus on the code.
- 2Get running processes
https://github.com/sindresorhus/ps-list
Get running processes. Contribute to sindresorhus/ps-list development by creating an account on GitHub.
- 3Get the path to the user home directory
https://github.com/sindresorhus/user-home
Get the path to the user home directory. Contribute to sindresorhus/user-home development by creating an account on GitHub.
- 4Recursive version of fs.readdir with streaming api.
https://github.com/paulmillr/readdirp
Recursive version of fs.readdir with streaming api. - paulmillr/readdirp
- 5Tips, tricks, and resources for working with Node.js, and the start of an ongoing conversation on how we can improve the Node.js experience on Microsoft platforms.
https://github.com/Microsoft/nodejs-guidelines
Tips, tricks, and resources for working with Node.js, and the start of an ongoing conversation on how we can improve the Node.js experience on Microsoft platforms. - microsoft/nodejs-guidelines
- 6fs with incremental backoff on EMFILE
https://github.com/isaacs/node-graceful-fs
fs with incremental backoff on EMFILE. Contribute to isaacs/node-graceful-fs development by creating an account on GitHub.
- 7:rocket: Upgrade npm on Windows
https://github.com/felixrieseberg/npm-windows-upgrade
:rocket: Upgrade npm on Windows. Contribute to felixrieseberg/npm-windows-upgrade development by creating an account on GitHub.
- 8Features • GitHub Actions
https://github.com/features/actions
Easily build, package, release, update, and deploy your project in any language—on GitHub or any external system—without having to run code yourself.
- 9Native port of Redis for Windows. Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs. This repository contains unofficial port of Redis to Windows.
https://github.com/tporadowski/redis
Native port of Redis for Windows. Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Se...
- 10:rage2: make the keys on an object path.sep agnostic.
https://github.com/bcoe/any-path
:rage2: make the keys on an object path.sep agnostic. - bcoe/any-path
- 11Cross-platform `/dev/null`
https://github.com/sindresorhus/dev-null-cli
Cross-platform `/dev/null`. Contribute to sindresorhus/dev-null-cli development by creating an account on GitHub.
- 12Creates a readable stream producing cryptographically strong pseudo-random data using `crypto.randomBytes()`
https://github.com/sindresorhus/random-bytes-readable-stream
Creates a readable stream producing cryptographically strong pseudo-random data using `crypto.randomBytes()` - sindresorhus/random-bytes-readable-stream
- 13Check if the process is running with elevated privileges
https://github.com/sindresorhus/is-elevated
Check if the process is running with elevated privileges - sindresorhus/is-elevated
- 14Create a readable Node.js stream that produces no data (or optionally blank data) or a writable stream that discards data
https://github.com/sindresorhus/noop-stream
Create a readable Node.js stream that produces no data (or optionally blank data) or a writable stream that discards data - sindresorhus/noop-stream
- 15Returns true if the platform is Windows (and Cygwin or MSYS/MinGW for unit tests)
https://github.com/jonschlinkert/is-windows
Returns true if the platform is Windows (and Cygwin or MSYS/MinGW for unit tests) - jonschlinkert/is-windows
- 16Access the system clipboard (copy/paste)
https://github.com/sindresorhus/clipboard-cli
Access the system clipboard (copy/paste). Contribute to sindresorhus/clipboard-cli development by creating an account on GitHub.
- 17Check if the process is running inside Windows Subsystem for Linux (Bash on Windows)
https://github.com/sindresorhus/is-wsl
Check if the process is running inside Windows Subsystem for Linux (Bash on Windows) - sindresorhus/is-wsl
- 18Like which(1) unix command. Find the first instance of an executable in the PATH.
https://github.com/npm/node-which
Like which(1) unix command. Find the first instance of an executable in the PATH. - npm/node-which
- 19Colored symbols for various log levels
https://github.com/sindresorhus/log-symbols
Colored symbols for various log levels. Contribute to sindresorhus/log-symbols development by creating an account on GitHub.
- 20Read and Write to the Windows registry in-process from Node.js. Easily set application file associations and other goodies.
https://github.com/CatalystCode/windows-registry-node
Read and Write to the Windows registry in-process from Node.js. Easily set application file associations and other goodies. - CatalystCode/windows-registry-node
- 21Open stuff like URLs, files, executables. Cross-platform.
https://github.com/sindresorhus/open
Open stuff like URLs, files, executables. Cross-platform. - sindresorhus/open
- 22Fabulously kill processes. Cross-platform.
https://github.com/sindresorhus/fkill
Fabulously kill processes. Cross-platform. Contribute to sindresorhus/fkill development by creating an account on GitHub.
- 23:package: Install C++ Build Tools for Windows using npm
https://github.com/felixrieseberg/windows-build-tools
:package: Install C++ Build Tools for Windows using npm - felixrieseberg/windows-build-tools
- 24Install WSL
https://docs.microsoft.com/en-us/windows/wsl/install-win10
Install Windows Subsystem for Linux with the command, wsl --install. Use a Bash terminal on your Windows machine run by your preferred Linux distribution - Ubuntu, Debian, SUSE, Kali, Fedora, Pengwin, Alpine, and more are available.
- 25Unicode stdout on Windows command prompt · Issue #7940 · nodejs/node-v0.x-archive
https://github.com/nodejs/node-v0.x-archive/issues/7940
With Node.js 0.10.28 running the following: node -e "process.stdout.write('✔');" Outputs ✔ on OS X, but only shows the following on Windows 8.1 command prompt: It would be very useful if Unicode ch...
- 26Copy files
https://github.com/sindresorhus/cpy
Copy files. Contribute to sindresorhus/cpy development by creating an account on GitHub.
- 27Look up environment settings specific to different operating systems.
https://github.com/npm/osenv
Look up environment settings specific to different operating systems. - npm/osenv
- 28Unicode symbols with fallbacks for older terminals
https://github.com/sindresorhus/figures
Unicode symbols with fallbacks for older terminals - sindresorhus/figures
- 29Node.js — Download Node.js®
https://nodejs.org/en/download/
Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.
- 30Get the username of the current user
https://github.com/sindresorhus/username
Get the username of the current user. Contribute to sindresorhus/username development by creating an account on GitHub.
- 31Check if a process is running
https://github.com/sindresorhus/process-exists
Check if a process is running. Contribute to sindresorhus/process-exists development by creating an account on GitHub.
- 32when you want to fire an event no matter how a process exits.
https://github.com/tapjs/signal-exit
when you want to fire an event no matter how a process exits. - tapjs/signal-exit
- 33Make a directory and its parents if needed - Think `mkdir -p`
https://github.com/sindresorhus/make-dir
Make a directory and its parents if needed - Think `mkdir -p` - sindresorhus/make-dir
- 34Get the name of the current operating system. Example: macOS Sierra
https://github.com/sindresorhus/os-name
Get the name of the current operating system. Example: macOS Sierra - sindresorhus/os-name
- 35node module that provides access to the Windows Registry through the REG commandline tool
https://github.com/fresc81/node-winreg
node module that provides access to the Windows Registry through the REG commandline tool - fresc81/node-winreg
- 36Automated installation of the Microsoft IE App Compat virtual machines
https://github.com/amichaelparker/ievms
Automated installation of the Microsoft IE App Compat virtual machines - amichaelparker/ievms
- 37Human-friendly process signals
https://github.com/ehmicky/human-signals
Human-friendly process signals. Contribute to ehmicky/human-signals development by creating an account on GitHub.
- 38Gulp.js command execution for humans
https://github.com/ehmicky/gulp-execa
Gulp.js command execution for humans. Contribute to ehmicky/gulp-execa development by creating an account on GitHub.
- 39Get the global cache directory
https://github.com/ehmicky/global-cache-dir
Get the global cache directory. Contribute to ehmicky/global-cache-dir development by creating an account on GitHub.
- 40📗 How to write cross-platform Node.js code
https://github.com/ehmicky/cross-platform-node-guide
📗 How to write cross-platform Node.js code. Contribute to ehmicky/cross-platform-node-guide development by creating an account on GitHub.
- 41A `rm -rf` util for nodejs
https://github.com/isaacs/rimraf
A `rm -rf` util for nodejs. Contribute to isaacs/rimraf development by creating an account on GitHub.
- 42Delete files and directories
https://github.com/sindresorhus/del
Delete files and directories. Contribute to sindresorhus/del development by creating an account on GitHub.
- 43🔀 Cross platform setting of environment scripts
https://github.com/kentcdodds/cross-env
🔀 Cross platform setting of environment scripts. Contribute to kentcdodds/cross-env development by creating an account on GitHub.
- 44Node version management
https://github.com/tj/n
Node version management. Contribute to tj/n development by creating an account on GitHub.
- 45Access the system clipboard (copy/paste)
https://github.com/sindresorhus/clipboardy
Access the system clipboard (copy/paste). Contribute to sindresorhus/clipboardy development by creating an account on GitHub.
- 46All the characters that work on most terminals
https://github.com/ehmicky/cross-platform-terminal-characters
All the characters that work on most terminals. Contribute to ehmicky/cross-platform-terminal-characters development by creating an account on GitHub.
- 47Minimal and efficient cross-platform file watching library
https://github.com/paulmillr/chokidar
Minimal and efficient cross-platform file watching library - paulmillr/chokidar
- 48A Node.js module for sending notifications on native Mac, Windows and Linux (or Growl as fallback)
https://github.com/mikaelbr/node-notifier
A Node.js module for sending notifications on native Mac, Windows and Linux (or Growl as fallback) - mikaelbr/node-notifier
- 49Process execution for humans
https://github.com/sindresorhus/execa
Process execution for humans. Contribute to sindresorhus/execa development by creating an account on GitHub.
- 50A node.js version management utility for Windows. Ironically written in Go.
https://github.com/coreybutler/nvm-windows
A node.js version management utility for Windows. Ironically written in Go. - coreybutler/nvm-windows
- 51A Node.js module that returns the OS/Distribution name of the environment you are working on
https://github.com/retrohacker/getos
A Node.js module that returns the OS/Distribution name of the environment you are working on - retrohacker/getos
- 52🗃 Simple access to, and manipulation of, the Windows Registry. With promises. Without rage.
https://github.com/MikeKovarik/rage-edit
🗃 Simple access to, and manipulation of, the Windows Registry. With promises. Without rage. - MikeKovarik/rage-edit
- 53Windows support for Node.JS scripts (daemons, eventlog, UAC, etc).
https://github.com/coreybutler/node-windows
Windows support for Node.JS scripts (daemons, eventlog, UAC, etc). - coreybutler/node-windows
- 54:shell: Portable Unix shell commands for Node.js
https://github.com/shelljs/shelljs
:shell: Portable Unix shell commands for Node.js. Contribute to shelljs/shelljs development by creating an account on GitHub.
- 55Node.js: extra methods for the fs object like copy(), remove(), mkdirs()
https://github.com/jprichardson/node-fs-extra
Node.js: extra methods for the fs object like copy(), remove(), mkdirs() - jprichardson/node-fs-extra
- 56🖥️ A list of awesome packages and frameworks for implementing javascript applications on the desktop
https://github.com/styfle/awesome-desktop-js
🖥️ A list of awesome packages and frameworks for implementing javascript applications on the desktop - styfle/awesome-desktop-js
- 57A cross platform solution to node's spawn and spawnSync
https://github.com/IndigoUnited/node-cross-spawn
A cross platform solution to node's spawn and spawnSync - moxystudio/node-cross-spawn
- 58Wrap all spawned Node.js child processes by adding environs and arguments ahead of the main JavaScript file argument.
https://github.com/isaacs/spawn-wrap#contracts-and-caveats
Wrap all spawned Node.js child processes by adding environs and arguments ahead of the main JavaScript file argument. - istanbuljs/spawn-wrap
- 59System Information Library for Node.JS
https://github.com/sebhildebrandt/systeminformation
System Information Library for Node.JS. Contribute to sebhildebrandt/systeminformation development by creating an account on GitHub.
- 60child_process.spawn ignores PATHEXT on Windows · Issue #2318 · nodejs/node-v0.x-archive
https://github.com/nodejs/node-v0.x-archive/issues/2318
For example require('child.process').spawn('mycmd') won't find C:\util\mycmd.bat when PATH contains C:\util and PATHEXT contains .BAT. Ye olde code (https://github.com/joyent/node/blob/v0.4/src/nod...
- 61Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions
https://github.com/creationix/nvm
Node Version Manager - POSIX-compliant bash script to manage multiple active node.js versions - nvm-sh/nvm
FAQ'sto know more about the topic.
mail [email protected] to add your project or resources here 🔥.
- 1What should I do if my app crashes on one platform but not on others?
- 2How can I fix performance issues in my cross-platform app?
- 3What can I do if my app's UI looks different on various platforms?
- 4How do I handle API differences in cross-platform development?
- 5What steps should I take if my cross-platform app has inconsistent data storage?
- 6How can I troubleshoot build errors when developing cross-platform apps?
- 7What should I do if my app does not respond on a specific platform?
- 8How do I address user permissions issues in cross-platform apps?
- 9What steps should I take if my app's functionality is limited on certain platforms?
- 10How do I troubleshoot cross-platform compatibility issues?
- 11What can I do if my app's build time is excessively long?
- 12How do I handle feature parity in cross-platform development?
- 13What steps should I take if my app has localization issues?
- 14How can I manage user sessions in a cross-platform app?
- 15What should I do if my cross-platform app has network connectivity issues?
- 16How do I implement testing strategies for cross-platform apps?
- 17What can I do if users report unexpected behavior in my app?
- 18How do I implement push notifications in cross-platform apps?
- 19How do I troubleshoot performance issues in cross-platform apps?
- 20What should I do if my app crashes on a specific platform?
- 21How do I fix broken UI elements in my cross-platform app?
- 22How do I handle permissions in cross-platform apps?
- 23What steps should I take to ensure proper debugging across platforms?
- 24How can I manage API responses effectively in a cross-platform app?
- 25What should I do if my app's features are not syncing correctly across devices?
- 26How do I optimize images for cross-platform applications?
- 27How do I handle inconsistent user experience across platforms?
- 28What can I do if the app's loading speed varies across platforms?
- 29How do I troubleshoot network-related issues in my cross-platform app?
- 30What should I do if my app behaves differently in different environments?
- 31How do I debug API integration issues in my cross-platform app?
- 32What can I do if my app doesn't support certain device features?
- 33How do I fix localization issues in cross-platform apps?
- 34What should I do if users are experiencing connectivity issues in my app?
- 35How do I resolve issues with third-party libraries in my cross-platform app?
- 36What steps should I take to improve cross-platform app security?
- 37How can I optimize the app's performance across different devices?
- 38How do I manage updates in my cross-platform application effectively?
- 39What should I do if I encounter compatibility issues with older devices?
- 40How can I handle user feedback effectively in my cross-platform app?
- 41What steps should I take to ensure proper app testing across platforms?
- 42How can I resolve build errors in cross-platform development?
- 43What should I do if my app is crashing on specific devices?
- 44How do I handle localization in my cross-platform app?
- 45What steps should I take to improve my app's user experience (UX)?
- 46How can I manage different screen sizes and orientations effectively?
- 47What should I do if my app's performance is slow?
- 48How do I effectively manage app dependencies?
- 49What steps can I take to enhance accessibility in my cross-platform app?
- 50How can I troubleshoot issues with push notifications?
- 51What steps should I follow to ensure data synchronization across platforms?
- 52How do I fix layout issues on different devices?
- 53What should I do if my app is consuming too much battery?
- 54How can I effectively test my cross-platform app?
- 55What steps can I take to manage user authentication effectively?
- 56How can I troubleshoot issues with third-party libraries?
- 57How can I fix issues with app permissions on mobile devices?
- 58What steps should I take if my app crashes on startup?
- 59How can I resolve conflicts during version control?
- 60What steps can I take to handle memory leaks in my application?
- 61How do I troubleshoot API response issues?
- 62What should I do if my app's UI elements are not rendering correctly?
- 63How can I improve the responsiveness of my application?
- 64What steps should I take to handle user feedback effectively?
- 65How can I troubleshoot a slow application?
- 66What should I do if my app's localization is not working?
- 67How do I handle user authentication issues?
- 68What steps can I take to resolve database connection errors?
- 69How do I fix broken links in my application?
- 70What steps should I take if my app's push notifications aren't working?
- 71How can I troubleshoot issues with responsive design?
- 72What should I do if my app's animations are lagging?
- 73How do I handle CORS errors in my application?
- 74How can I resolve issues with file uploads in my application?
- 75What steps should I take if my app is experiencing crashes?
- 76How do I troubleshoot API response issues?
- 77What should I do if my app is not displaying correctly in certain browsers?
- 78How can I fix issues with custom fonts in my web application?
- 79What steps should I take if my application is showing outdated content?
- 80How do I troubleshoot issues with state management in my application?
- 81What should I check if my application is loading slowly?
- 82How can I troubleshoot issues with third-party API integrations?
- 83What should I do if my application is not responding?
- 84How do I resolve problems with user authentication in my application?
- 85What steps should I take if my application has broken links?
- 86How can I resolve issues with payment processing in my application?
- 87What should I check if my application is displaying incorrect data?
- 88How can I troubleshoot issues with mobile responsiveness?
- 89What steps should I take if my application is crashing frequently?
- 90How can I fix issues with outdated content in my application?
- 91How can I resolve issues with cross-browser compatibility?
- 92What should I do if my application is loading slowly?
- 93How can I fix issues with user notifications in my application?
- 94What steps should I take if my application crashes on specific devices?
- 95How can I troubleshoot issues with form validation?
- 96What should I check if my application is not connecting to the database?
- 97How can I fix issues with third-party libraries in my application?
- 98What steps should I take to ensure application security?
- 99How can I troubleshoot issues with user authentication?
- 100What steps should I take to resolve API integration issues?
- 101How can I fix issues with responsive design?
- 102How can I troubleshoot build errors in my project?
- 103What steps can I take to resolve database connection issues?
- 104How do I fix issues with third-party integrations?
- 105What steps should I take to resolve frontend performance issues?
- 106How can I troubleshoot cross-browser compatibility issues?
- 107What steps should I take to resolve API rate limiting issues?
- 108How can I troubleshoot mobile app performance issues?
- 109What steps can I take to resolve issues with code dependencies?
- 110How can I troubleshoot data serialization issues?
- 111What steps should I take to resolve issues with user authentication?
- 112How can I troubleshoot issues with file uploads?
- 113What steps should I take to troubleshoot issues with SSL certificates?
- 114How can I resolve issues with API versioning?
- 115What steps can I take to troubleshoot web socket connections?
- 116How can I resolve issues with mobile app testing?
- 117What steps can I take to resolve issues with build failures?
- 118How can I troubleshoot API call failures?
- 119What steps can I take to fix errors in my application’s deployment?
- 120How can I resolve issues with caching in my application?
- 121What steps can I take to troubleshoot SSL certificate problems?
- 122How can I resolve issues with API versioning?
- 123What steps can I take to troubleshoot web socket connections?
- 124How can I resolve issues with mobile app testing?
- 125How can I troubleshoot errors in my web application?
- 126What steps should I take to optimize my application’s performance?
- 127How can I fix common issues with responsive web design?
- 128What are the steps to secure my web application?
- 129How can I resolve issues with version control?
- 130What are the best practices for API development?
- 131How can I manage dependencies in my Node.js application?
- 132What steps should I follow for effective project management in software development?
- 133How do I handle user feedback effectively?
- 134How can I streamline the deployment process for my application?
- 135What are the steps to effectively onboard new team members?
- 136How can I ensure code quality in my projects?
- 137What steps should I take to improve my team's collaboration?
- 138How can I track my application's performance?
- 139What are the best practices for maintaining a clean codebase?
- 140How can I enhance user experience in my application?
- 141How do I effectively manage remote teams?
- 142What strategies can I use for effective time management?
- 143How do I effectively onboard new team members?
- 144How can I resolve build errors in my cross-platform app?
- 145What should I do if my app crashes on startup?
- 146How do I fix network connectivity issues in my app?
- 147How can I troubleshoot performance issues in my cross-platform app?
- 148How can I handle user input validation errors?
- 149How can I fix issues with third-party API integrations?
- 150What steps should I take if my mobile app is not responding?
- 151How can I manage version control conflicts in Git?
- 152What should I do if my app's UI is not displaying correctly?
- 153How can I troubleshoot database connection issues?
- 154How can I troubleshoot slow performance in my web app?
- 155What should I do if my app doesn't load in a browser?
- 156How do I handle authentication errors in my application?
- 157What should I do if my API requests are failing?
- 158How can I recover from a failed software deployment?
- 159What steps should I take if my app is experiencing memory leaks?
- 160How can I fix cross-browser compatibility issues in my web app?
- 161What should I do if my app crashes unexpectedly?
- 162How can I manage API versioning in my application?
- 163How can I resolve dependency conflicts in my project?
- 164What should I do if my app's API rate limit is exceeded?
- 165How can I improve my app's performance on mobile devices?
- 166What should I do if my web app is slow?
- 167How can I ensure my web app is accessible to all users?
- 168What should I do if my app is experiencing security vulnerabilities?
- 169How can I manage user sessions securely?
- 170What should I do if my app is not scaling well?
- 171How can I fix broken links in my web app?
- 172What steps should I take to optimize my web app for search engines?
- 173How can I handle CORS issues in my web app?
- 174What should I do if my web app has memory leaks?
- 175How can I improve the security of my web app?
- 176What should I do if my API is returning errors?
- 177How can I implement user authentication in my web app?
- 178What should I do if my web app is slow?
- 179How can I manage state in my web app effectively?
- 180What should I do if my web app's deployment fails?
- 181How can I implement logging in my web app?
- 182How can I test my web app for performance issues?
- 183How do I fix a broken deployment in my web app?
- 184What steps should I take to optimize my web app's loading speed?
- 185How do I troubleshoot API connection issues in my web app?
- 186What should I do if my web app's performance degrades over time?
- 187How do I manage user authentication and authorization in my web app?
- 188What steps should I take to recover a lost database connection?
- 189How can I debug JavaScript errors in my web application?
- 190What should I do if my web app keeps crashing?
- 191How do I resolve version conflicts in dependencies?
- 192How can I improve error handling in my web application?
- 193How do I handle CORS issues in my web app?
Queriesor most google FAQ's about Cross-Platform.
mail [email protected] to add more queries here 🔍.
- 1
cross platform app development 2024
- 2
flutter cross platform app development
- 3
multi platform development
- 4
cross platform mobile app development full course
- 5
cross platform mobile app development شرح
- 6
cross platform or native mobile development
- 7
visual studio cross platform app development
- 8
cross platform game development
- 9
cross platform development
- 10
cross-platform mobile development
- 11
cross platform desktop application development
- 12
cross platform vs native development
- 13
cross platform mobile app development roadmap
- 14
cross platform web development
- 15
cross platform app development tutorial
- 16
cross platform mobile development
- 17
xamarin cross platform app development tutorial
- 18
cross platform desktop application development c#
- 19
cross platform mobile app development
- 20
front end and cross platform mobile development
- 21
best cross platform mobile app development framework
- 22
python cross platform app development
- 23
what is cross platform app development
- 24
best cross platform app development frameworks 2023
- 25
best cross platform app development frameworks 2024
- 26
what is cross platform development
- 27
java cross platform app development
- 28
cross platform mobile app development in tamil
- 29
native vs cross platform mobile app development
- 30
cross platform app development roadmap
- 31
mobile cross platform development
- 32
cross platform app development full course
- 33
best programming language for cross platform app development
- 34
cross platform app development react native
- 35
cross platform app development
- 36
c++ cross platform development
- 37
cross platform software development
- 38
cross platform application development
- 39
lyra cross-platform ui development
- 40
android os cross platform app development
- 41
cross platform desktop app development
- 42
best cross platform development framework
- 43
ionic cross platform development
- 44
cross platform vs hybrid app development
- 45
cross platform mobile app development course
- 46
cross platform mobile app development tutorial
- 47
cross platform app development course
- 48
cross platform development for ios and android
- 49
cross platform mobile app development 2024
- 50
cross platform mobile game development
- 51
cross platform development frameworks
- 52
native or cross platform mobile development
- 53
what is cross platform app development in tamil
- 54
kotlin cross platform development
More Sitesto check out once you're finished browsing here.
https://www.0x3d.site/
0x3d is designed for aggregating information.
https://nodejs.0x3d.site/
NodeJS Online Directory
https://cross-platform.0x3d.site/
Cross Platform Online Directory
https://open-source.0x3d.site/
Open Source Online Directory
https://analytics.0x3d.site/
Analytics Online Directory
https://javascript.0x3d.site/
JavaScript Online Directory
https://golang.0x3d.site/
GoLang Online Directory
https://python.0x3d.site/
Python Online Directory
https://swift.0x3d.site/
Swift Online Directory
https://rust.0x3d.site/
Rust Online Directory
https://scala.0x3d.site/
Scala Online Directory
https://ruby.0x3d.site/
Ruby Online Directory
https://clojure.0x3d.site/
Clojure Online Directory
https://elixir.0x3d.site/
Elixir Online Directory
https://elm.0x3d.site/
Elm Online Directory
https://lua.0x3d.site/
Lua Online Directory
https://c-programming.0x3d.site/
C Programming Online Directory
https://cpp-programming.0x3d.site/
C++ Programming Online Directory
https://r-programming.0x3d.site/
R Programming Online Directory
https://perl.0x3d.site/
Perl Online Directory
https://java.0x3d.site/
Java Online Directory
https://kotlin.0x3d.site/
Kotlin Online Directory
https://php.0x3d.site/
PHP Online Directory
https://react.0x3d.site/
React JS Online Directory
https://angular.0x3d.site/
Angular JS Online Directory