How to start a new Angular 9 Project in few easy steps

ZeroesAndOnes
6 min readFeb 7, 2020

In order to successfully create and run an Angular project locally the following three software must be installed on your machine.

  • VScode [Link]
    Visual Studio Code is a source-code editor developed by Microsoft for Windows, Linux and macOS. It includes support for debugging, embedded Git control and GitHub, syntax highlighting, intelligent code completion, snippets, and code refactoring.
  • Node [Link]
    Node.js is an open-source, cross-platform, JavaScript runtime environment that executes JavaScript code outside of a browser.
  • npm [Link]
    npm is the world’s largest software registry. Open source developers from every continent use npm to share and borrow packages, and many organizations use npm to manage private development as well.

1 — Install Software

1.1 — Install Visual Studio Code

In order to write code we must use an IDE and Microsoft has developed an open source and cross platform IDE that can be ran from anywhere regardless of which operating system you are using.

To install the IDE visit code.visualstudio.com and download the installation that best suit your case. Make sure to pick the stable version.

Visual Studio Code
Visual Studio Code Download Page

--

--