Last active
September 18, 2018 22:03
-
-
Save rickslayer/126802c30141daa29e4b45b5ae060be2 to your computer and use it in GitHub Desktop.
Angular Atalhos e dicas
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Run server | |
ng serve | |
//Create project | |
ng new nameproject | |
//Create new component | |
ng generate component namecomponent | |
short version: ng g c namecomponent | |
//TS declaration variable | |
numberVariable: number = 10; | |
stringVariable: string = 'variableValue'; | |
//generate css with saas | |
saas --watch scssfile :outputcssfile | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment