I downloaded new meteor 3.2.0 and tutorial app at GitHub - meteor/meteor3-react, but nothing showsup in the browser when I run meteor at http://localhost:3000/
Hi there,
regardless of which version of Meteor you have installed, an app will start with the version of Meteor specified in the project: meteor3-react/.meteor/release at main · meteor/meteor3-react · GitHub
I think you could go in that file on your computer and update the version to match the one you installed or you can go for the latest stable version which is 3.2.2. Chances are the beta version in the example is no longer available or compatible or so.
If you still have problems after this change, it would be good to know what OS you are on, if you see any errors in the browswer console or the server console.
Hey, I’m jumping in here because I ran into the same issue. I tried running the tutorial app with Meteor 3.2.0, but nothing showed up at localhost:3000
either.
Following your advice, I checked the .meteor/release
file, and it was pointing to a beta version (3.2-beta.xx
). I updated it to 3.2.2
(which I already had installed), then ran meteor reset
just to be safe, and restarted the app. That seemed to do the trick; it’s now loading in the browser.
Thanks for the pointer! Just sharing in case it helps someone else.