小编典典

如何更改为旧版本的 Node.js

all

v0.5.9-pre在 Ubuntu 10.10 上运行 Node.js 版本。

我想使用 version v0.5.0-pre

如何回滚到旧版本的节点?


阅读 128

收藏
2022-03-08

共1个答案

小编典典

一种方法是使用 NVM,即节点版本管理器。

使用以下命令获取 nvm

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.34.0/install.sh | bash

你可以在https://github.com/creationix/nvm找到它

它允许您轻松安装和管理多个版本的节点。这是帮助中的一个片段:

Usage:
nvm install <version>       Download and install a <version>
nvm use <version>           Modify PATH to use <version>
nvm ls                      List versions (installed versions are blue)
2022-03-08