Skip to content

Instantly share code, notes, and snippets.

@rickslayer
Last active September 18, 2018 22:03
Show Gist options
  • Save rickslayer/126802c30141daa29e4b45b5ae060be2 to your computer and use it in GitHub Desktop.
Save rickslayer/126802c30141daa29e4b45b5ae060be2 to your computer and use it in GitHub Desktop.
Angular Atalhos e dicas
//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