ホームページ > 記事 > ウェブフロントエンド > Node.js はどのようにバージョン管理を実行しますか?共有できる 3 つの実用的なバージョン管理ツール
ノードバージョン管理を実行するにはどうすればよいですか?次の記事では、非常に実用的な Node.js のバージョン管理ツールを 3 つ紹介します。
前回の記事「Node.js のさまざまなバージョンの違いは何ですか?」適切なバージョンを選択するにはどうすればよいですか? 」で、Node.js のバージョンが LTS 系と Current 系に分かれていると紹介しましたが、LTS 版と Current 版の両方をローカル開発環境にインストールする必要がある場合、Node.js 版のバージョン管理を行う必要があります。
たとえば、Node.js 8.0.0 と Node.js 17.0.0 はローカルにインストールする必要があります。
Github スター: 60K
nvm は Node.js です。バージョン管理ツールを使用すると、ユーザーはコマンド ラインからさまざまな Node.js バージョンをすばやくインストール、切り替え、管理できます。
画像出典: nvm は macOS および Linux ユーザーのみを対象としたプロジェクトです。Windows ユーザーの場合は、 ##nvm-windowsインストール方法# 方式1 浏览器打开下面链接下载 https://github.com/nvm-sh/nvm/blob/v0.39.1/install.sh # 下载完成后,通过命令安装 sh install.sh # 方式2 推荐 curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash # 方式3 wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash
インストール プロセス中に奇妙な問題が発生した場合は、
nvm を確認してください。補足説明一般的なコマンドnvm ls # 查看版本安装所有版本 nvm ls-remote # 查看远程所有的 Node.js 版本 nvm install 17.0.0 # 安装指定的 Node.js 版本 nvm use 17.0.0 # 使用指定的 Node.js 版本 nvm alias default 17.0.0 # 设置默认 Node.js 版本 nvm alias dev 17.0.0 # 设置指定版本的别名,如将 17.0.0 版本别名设置为 dev
n
は対話型の Node.js バージョン管理ツールです。サブスクリプト、構成ファイル、複雑な API はありません。非常に使いやすいです。 。 単純。
#n macOS と Linux でのみ利用可能であり、Windows では利用できません。
インストール方法npm install n -g共通コマンド
n # 显示所有已下载版本 n 10.16.0 # 下载指定版本 n lts # 查看远程所有 LTS Node.js 版本 n run 10.16.0 # 运行指定的 Node.js 版本
と入力してヘルプ情報を表示します。主なコマンドは次のとおりです: <pre class="brush:php;toolbar:false"> n Display downloaded Node.js versions and install selection
n latest Install the latest Node.js release (downloading if necessary)
n lts Install the latest LTS Node.js release (downloading if necessary)
n <version> Install Node.js <version> (downloading if necessary)
n install <version> Install Node.js <version> (downloading if necessary)
n run <version> [args ...] Execute downloaded Node.js <version> with [args ...]
n which <version> Output path for downloaded node <version>
n exec <vers> <cmd> [args...] Execute command with modified PATH, so downloaded node <version> and npm first
n rm <version> Remove the given downloaded version(s)
n prune Remove all downloaded versions except the installed version
n --latest Output the latest Node.js version available
n --lts Output the latest LTS Node.js version available
n ls Output downloaded versions
n ls-remote [version] Output matching versions available for download
n uninstall Remove the installed Node.js</version></version></cmd></vers></version></version></version></version></version></version></version></version></pre>
fnm
は、Rust を使用して構築された、高速かつシンプルな Node.js バージョン マネージャーです。
画像出典:
freecodecamp ? クロスプラットフォームのサポート、含む: macOS、Windows、Linux;.nvmrc
ファイル;
# bash, zsh and fish shells curl -fsSL https://fnm.vercel.app/install | bash
Windows 環境:
# 管理员模式打开终端,安装后只能使用管理员模式打开使用 choco install fnm # 安装完成还需要手动设置环境变量
Linux/macOS/Windows 環境では、インストール用のバイナリ ファイルを直接ダウンロードすることもできます。ダウンロード アドレス:
github.com/Schniz/fnm/…一般的に使用されるコマンドfnm -h # 查看帮助 fnm install 17.0.0 # 安装指定 Node.js 版本 fnm use 17.0.0 # 使用指定 Node.js 版本 fnm default 17.0.0 # 设置默认 Node.js 版本
より良いツールをお持ちの場合は、メッセージを残して共有してください。
ノード関連の知識については、nodejs チュートリアル を参照してください。
以上がNode.js はどのようにバージョン管理を実行しますか?共有できる 3 つの実用的なバージョン管理ツールの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。