我为 Windows 安装了 Meteor,想知道我安装了哪个版本的 Meteor 来决定是否需要更新。如何才能做到这一点?
meteor update
还不能在 Windows 上运行。
meteor --version
返回消息Unreleased (running from a checkout)
我为 Windows 安装了 Meteor,想知道我安装了哪个版本的 Meteor 来决定是否需要更新。如何才能做到这一点?
meteor update
还不能在 Windows 上运行。
meteor --version
返回消息Unreleased (running from a checkout)
在项目文件夹中,在命令行中尝试这个...
meteor --version
如果您通过 MSI 安装了 Windows 版本,您可以在标准的 Windows 添加/删除程序向导中查看您拥有的版本。
您正在使用的 Meteor for Windows 版本不使用“仓库”,因此 Meteor 始终使用“无”版本。有一个用于 Windows 的 Meteor 的实验版本,它确实使用了以下仓库:https ://github.com/sdarnell/meteor/wiki/Windows
cd 进入隐藏的 .meteor 文件夹并打开文件夹内的发布文件,它将有版本号
$ cd .meteor
$ nano 发布
如果您有权访问 Meteor CLI,meteor show meteor
则会有有趣的输出。这就是我得到的:
$ meteor show meteor
Package: meteor@1.1.10
Maintainers: mdg
Exports: Meteor
This is an internal Meteor package.
Recent versions:
1.1.5 March 18th, 2015
1.1.6 April 1st, 2015
1.1.7 September 22nd, 2015
1.1.9 September 29th, 2015
1.1.10 October 27th, 2015 installed
Older and pre-release versions of meteor have been hidden. To see all 73 versions, run 'meteor show --show-all meteor'.
仅供参考,您可以随时在浏览器中使用Meteor.release
Meteor 应用程序页面的 devtools 控制台中的命令进行检查。