To use the Angular framework, you should be familiar with the following:
JavaScript
HTML
CSS
To install Angular on your local system, you need the following:
Node.js
Angular requires an active LTS or maintenance LTS version of Node.js.
Run in a terminal window
node -v
npm -v
npm install -g @angular/cli
ng new my-app
cd my-app
ng serve --open
The --open (or just -o) option automatically opens your browser to http://localhost:4200/.
👍