Updatating Angular
Update npm and ng to the latest version (at the time of writing 6.4.0 and @angular/[email protected])
sudo npm update npm -g
sudo npm install npm -g
sudo npm install -g @angular/cli@latest
Angular setup
Create a new Angular application inside the cloned git folder
cd ~/dev/JobSearchLog
ng new JobSearchLog --directory ./
In the package.json file we can see that the default scripts for npm are already configured to launch ng with the appropriate parameters.
Run the Angular application and check that everything is working
ng serve
Navigate with the browser to http://localhost:4200/
Make a git commit with new files.