Angular web framework is a framework that is used to develop websites and web-apps. In this tutorial will show you how to get started with Angular. You need to have installed a code IDE and Node.JS.
Angular is a framework made by Google and can be installed using npm install angular
For the console command to work properly you need to first have made a npm project. You can do that by navigating to your project folder and in your VSCode console type npm init. Fill in the details and you should see a package.json file in your project. Having that done, type npm install angular and the installation process should begin. Once the installation is over you should see more files created in your project.
The files that you are going to use to develop your website are located in the app folder. There is app.component.ts, app.component.css and app.component.html. TS is short for TypeScript. In the app.component.html you can write your html. In the html file you will also see code that is not html. That is for the script processes of the website. Angular works in components, so all components are a part of the page. There could be a sidebar component, a navbar component and the main component. These all make the single page web-app
An easy way to get started on angular and web development is to use Stackblitz.com. This is an online code editor that can help you in getting started with angular and many other web frameworks