安装旧的 meteorjs 版本
Install old meteorjs version
Meteor 文档和网站用 curl https://install.meteor.com/ | sh
或 npm install -g meteor
解释了如何安装最新版本,但我需要安装特定的旧版本。如何安装 Meteor 1.11 版?
您始终可以安装最新版本,然后使用项目的版本启动旧版本。
Meteor 会尊重您的 .meteor/release
文件,如果您需要创建具有特定版本的项目,您可以使用 meteor create --release 1.2.1 yourAppName
.
您可以提供一个发布参数,例如:
curl "https://install.meteor.com/?release=1.3.3.1" | sh
另见:
how do I install a previous version of meteor JS?
Meteor 文档和网站用 curl https://install.meteor.com/ | sh
或 npm install -g meteor
解释了如何安装最新版本,但我需要安装特定的旧版本。如何安装 Meteor 1.11 版?
您始终可以安装最新版本,然后使用项目的版本启动旧版本。
Meteor 会尊重您的 .meteor/release
文件,如果您需要创建具有特定版本的项目,您可以使用 meteor create --release 1.2.1 yourAppName
.
您可以提供一个发布参数,例如:
curl "https://install.meteor.com/?release=1.3.3.1" | sh
另见:
how do I install a previous version of meteor JS?