Month / May 2019
-
Git configuration and first push
Navigate to the local project directory and create a git repository: git init To add all files to next commit, run following: git add . To check git status, use this: git…May 5, 2019 -
Useful angular commands
Create a new angular project ng new Update application and it's dependencies ng update For development, start the app at localhost:4200 ng serve --open Generate new component ng generate component [component name]…May 2, 2019
Loading posts...