Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Archived Meteor Documentation

Tags:

meteor

Does anyone know where to find MeteorJS documentation for past versions? There does not seem to be an option on the website to switch to an older version like there is on other documentation sites.

like image 476
Coleman O'Phelan Avatar asked Dec 25 '22 11:12

Coleman O'Phelan


1 Answers

You can download the tag for the version you want and run the app in the /docs directory. The docs directory is a meteor app. All you need to do is meteor inside of it.

E.g for version 0.7.2:

git clone [email protected]:meteor/meteor.git
cd meteor
git checkout release/0.7.2
cd docs
meteor
open localhost:3000
like image 107
Tarang Avatar answered Jan 17 '23 22:01

Tarang