Tuesday, March 25, 2025

Creating a Dental Application Front End using Angular

1. First install Nodejs from nodejs.org

2. Download and Install VSCode

3. After installing nodejs, set path environment 



4. Set the Path to nodejs







5. Then in terminal the following error occurs if we try to check "npm install" as npm is not added. 



npm : File C:\Program Files\nodejs\npm.ps1 cannot be loaded because running scripts is disabled on this system. For more information, see about_Execution_Policies at https:/go.microsoft.com/fwlink/?LinkID=135170.

At line:1 char:1

+ npm

+ ~~~

    + CategoryInfo          : SecurityError: (:) [], PSSecurityException

    + FullyQualifiedErrorId : UnauthorizedAccess


6. Run the following command:

Set-ExecutionPolicy RemoteSigned


7. Install Angular CLI using 

npm install -g @angular/cli


8. ng new mydental   


9. cd mydenal

10. ng serve mydental

11. For better UI, lets add Angular Material 

ng add @angular/material


12. Create your first component

ng generate component dashboard