Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find older versions of Angular 2 documentation?

Tags:

angular

Angular 2 RC 5 was released a couple of days ago, however I would like to browse docs for RC 4 version. Is this possible?

like image 342
carpenter Avatar asked Aug 11 '16 13:08

carpenter


1 Answers

Angular team probably uses typescript-documentation, which means what you see on angular.io docs, is written and comitted to github with actual code in the same typescript file.

angular.io docs have a github link to that file in bottom-right. And as we all know how github works you can just browse through history of a particular document, however there is no clear seperation by version, just commit by commit seperation .

Update: You can also choose the tag (version) from top-left on github file shown in second picture. - @Scrambo (comment)


Here is the flow with screenshots,

One: angular.io docs

enter image description here

Two: github file latest version

enter image description here

Three: github file history

enter image description here

like image 175
Ankit Singh Avatar answered Nov 15 '22 07:11

Ankit Singh