# <center>Documentation of Internship Preparation <July 27 - 31, 2020> </center> ###### tags: `Daily Internship Documentation` --- ![](https://i.imgur.com/CYYmpYK.png) Angular is a framework to build website applications with HTML, CSS, and TypeScript. Angular is develop with TypeScript language. The web application is easier to develop with Angular because it makes our application more testable and contains a lot of re-usable code. ------------------------------------------------------------------------- Click link down below to find out more about Angular: https://angular.io/ ### **Install Angular** First of all, I installed Angular by learning and following the step from this link: https://angular.io/guide/setup-local. Here are the steps: 1. Download the Node.js and install it on the computer. Get the Node.js from this link: https://nodejs.org/en/download/ Node.js is a JavaScript runtime. Therefore we need it so we can run javaScript in our computer. 2. Open the command prompt. Command: **npm install -g @angular/cli** ![](https://i.imgur.com/3XFgB3N.png) The Angular will be installed on PC. 3. After the Angular installation is completed, I created an Angular folder on my PC to store the new Angular project inside. I change the command prompt directory to the new Angular folder and create a new project. Command: **ng new health-passport** ![](https://i.imgur.com/92nx4bL.png) with this command, I created a new project named "health-passport" 4. To run the application, we need to navigate to the workspace folder. Command: **cd health-passport** ![](https://i.imgur.com/OW6HcAT.png) After that, write command: **ng serve --open** ![](https://i.imgur.com/HUFH3pc.png) Localhost:4200 is a live development server where our application will be viewed. ![](https://i.imgur.com/fqyu291.png) 5. I'm using Visual Code as my code editor. I installed visual code on my computer and open angular file that i have made before.