Archived Meteor Documentation

你说的曾经没有我的故事 提交于 2019-12-19 09:12:34

问题


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.


回答1:


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 git@github.com:meteor/meteor.git
cd meteor
git checkout release/0.7.2
cd docs
meteor
open localhost:3000



回答2:


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




回答3:


Sorry to revive this thread a year in. But for users of the current Meteor 1.3 release it might be reassuring to know that you can get at least access to the Meteor 1.2 guide directly on guide.meteor.com via the small drop-down menu on top. Just switch it from "1.3" to "1.2".

For getting the full API docs or even older versions of the guide the currently accepted answer still applies, of course.




回答4:


You can read it in plain text (with no sourcecode examples) at:

  • src meteor docs 0.6.5
  • src meteor docs 0.7.2


来源:https://stackoverflow.com/questions/22871093/archived-meteor-documentation

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!