Where can I find older versions of the Angular 2 documentation?

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

+5
source share
1 answer
Command

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

angular.io docs have a github link for this file in bottom-right . And since we all know how github works, you can just look at the history of a specific document , however there is no clear markup by version, just do commit seperation .

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


Here is a stream with screenshots,

One: angular.io docs

enter image description here

Two: latest github version

enter image description here

Three: github file history

enter image description here

+4
source

All Articles