A project that creates the front-end of a website using Angular to perform CRUD operations.
npm install -g @angular/cli@12
This software allows the installation and use of multiple versions of Node. To install, click here.
nvm install 14.21.3
Caution
Uninstall Node from your machine before installing NVM.
nvm use 14.21.3
Tip
To check which versions of Node are installed, type nvm ls
ng add @angular/material
Caution
The Angular Material used is from version 12, and to find the documentation for its components, click here.
ng serve
ng g m <module_name> --routing
ng g c <module_name>/<component_name>
ng g interface <path>/<interface_name>
ng g s <path>/<service_name>
ng g pipe <path>/<pipe_name>
ng version
ng update @angular/core@13.3.3 @angular/cli@13.3.3
ng update @angular/cdk@13.3.3 @angular/material@13.3.3
npm run start
ng update @angular/core@14.1.0 @angular/cli@14.1.0
ng update @angular/cdk@14.1.0 @angular/material@14.1.0
ng g resolver <path>/<resolver_name>