Skip to content

✏️🏒 Angular course for Compasso UOL company

Notifications You must be signed in to change notification settings

EDusik/angular-course

Repository files navigation

πŸ“„ About

Angular course for Company Compasso Tecnologia

πŸš€ Technologies

This project uses these technologies:

πŸ’» Commands

Angular Commands

Generate New Component

ng generate component <name>
ng g c --skipTests=true --style=scss <name>

Generate New Service

ng generate service <name>

Generate New Class

ng generate class <name> 
ng g class <name> 

Generate New Module

ng generate module <name> 

Generate New Routing Module

ng generate module app-routing --flat --module=app

Generate New Directive

ng generate directive <name>

Generate New Pipe

ng generate pipe <name>

Generate New Interface

ng generate interface <name>

Generate New Enum

ng generate enum <name>

πŸ“ Run the Project

npm install
ng serve -o