[Solved] How to download Angular 7?


If you navigate to: docs.angularjs.org
You could spot the notice:

This site and all of its contents are referring to AngularJS (version
1.x), if you are looking for the latest Angular, please visit angular.io

To be short, AngularJS (1.x versions) is not Angular (even though Angular descends from AngularJS);

Not sure you’re a web developer but nowdays in the javascript world the most of projects uses Nodejs and npm (package manager) to getting started projects. And Angular does too. So, in order to get latest angular, you could:

$ # from console
$ npm install -g @angular/cli
$ # creating a new angular project
$ ng new my-app
$ # running the app
$ cd my-app && ng serve --open

The official doc is a good place to start: https://angular.io/guide/setup-local

0

solved How to download Angular 7?