Angular Setup & First App

MUST READ:

In this lecture, we'll create a new Angular project

To ensure that this works, for the moment, make sure that you have the LTS version of NodeJS installed, NOT the latest version (from https://nodejs.org/en/).

Especially double-check that you have npm version 6 installed - it's a tool that's installed together with NodeJS.

We need that tool to install the Angular CLI and create new Angular projects with that CLI.

Since npm v7 can cause issues, you should ensure that you use v6. Therefore, also run npm install -g npm@6 to ensure that you are using that version (on macOS, you might need to add sudo in front of that command).

Thereafter, you can proceed to creating a new Angular project.


If you want to dive deeper into the CLI and learn more about its usage, have a look at its official documentationhttps://github.com/angular/angular-cli/wiki

You encountered issues during the installation of the CLI or setup of a new Angular project?

A lot of problems are solved by making sure you're using the latest version of NodeJS, npm and the CLI itself.

Updating NodeJS:

Go to nodejs.org and download the latest version - uninstall (all) installed versions on your machine first.

Updating npm:

Run [sudo] npm install -g npm (sudo is only required on Mac/ Linux)

Updating the CLI

[sudo] npm uninstall -g angular-cli @angular/cli 

npm cache clean 

[sudo] npm install -g @angular/cli 

Here are some common issues & solutions:

  1. Creation of a new project takes forever (longer than 3 minutes)
  2. That happens on Windows from time to time => Try running the command line as administrator
  3. You get an EADDR error (Address already in use)
  4. You might already have another ng serve process running - make sure to quit that or use ng serve --port ANOTHERPORT  to serve your project on a new port
  5. My changes are not reflected in the browser (App is not compiling)
  6. Check if the window running ng serve displays an error. If that's not the case, make sure you're using the latest CLI version and try restarting your CLI


Complete and Continue