How to create Angular project from scratch

Updated:

How to create Angular project from scratch

  1. Install Node
  2. Check Node is installed.
    • Run ‘Command Prompt’.
    • Enter ‘node -v’.
      C:>node -v
      v12.16.3
      C:>
      
    • You can check the version of ‘Node’.
  3. Install Anglular CLI()
    • -g option: installs the current package context as a global package.
      C:>npm install -g @angular/cli
      
  4. Update new patch version of npm.
    • Run ‘npm install -g npm’ to update.
      C:>npm install -g npm