Archived Meteor Documentation

Does anyone know where to find the MeteorJS documentation for previous versions? On the website there is no way to switch to an older version, for example, on other documentation sites.

+4
source share
4 answers

You can download the tag for the desired version and run the application in the / docs directory. The docs directory is a meteorite app. All you have to do is meteorinside it.

For example, for version 0.7.2:

git clone git@github.com:meteor/meteor.git
cd meteor
git checkout release/0.7.2
cd docs
meteor
open localhost:3000
+5
source

One way is to break through the GitHub repo history for MeteorJS https://github.com/meteor/meteor/commits/devel/docs

+2
source

, . Meteor 1.3 , Meteor 1.2 guide.meteor.com - . "1.3" "1.2".

API , , .

+2

Source: https://habr.com/ru/post/1535087/


All Articles