Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check the version of Meteor.js on Windows

I installed Meteor for Windows and want to know what version of Meteor I have installed to decide if its time to update. How can this be done?

meteor update does not work on Windows yet.

meteor --version returns the message Unreleased (running from a checkout)

like image 279
Nyxynyx Avatar asked Jul 23 '13 01:07

Nyxynyx


People also ask

How do I run Meteor JS?

meteor run You can use the application by pointing your web browser at localhost:3000. No Internet connection is required. This is the default command. Simply running meteor is the same as meteor run .


2 Answers

In the project folder, in command line try this...

meteor --version
like image 169
SoEzPz Avatar answered Sep 22 '22 21:09

SoEzPz


If you installed the Windows version via the MSI, you can look in the standard windows add/remove programs wizard to see what version you have.

The version of Meteor for Windows you are using does not use the 'warehouse' and therefore Meteor always uses a version of 'none'. There is an experimental version of Meteor for Windows which does use the warehouse available at: https://github.com/sdarnell/meteor/wiki/Windows

like image 32
StephenD Avatar answered Sep 22 '22 21:09

StephenD