To check the installed version of the Meteor tool, just run the following command outside of any Meteor projects:
meteor --version
To get a list of all official (recommended) Meteor releases, run:
meteor show METEOR
If you want to check the project version of Meteor, you can also execute the following command inside a project:
meteor --version
or just print content of the file .meteor/release
:
cat .meteor/release
In case you want to check the version of the packages which are currently installed in your Meteor project, print the content of the file .meteor/versions
:
cat .meteor/versions
To see which version of Meteor a Meteor based website is running, dump the contents of Meteor.release
in your browsers console while visiting the website:
Meteor.release