Starting an Angular Project

  • Postat în IT
  • la 19-04-2023 15:00
  • de Horatiu Dan
  • 261 vizualizări

by Horatiu Dan

In order to be able to begin developing a new project using Angular, one shall follow a couple of simple steps, described as part of this blog post. In addition to the set-up, the post will briefly explain how a project is generally structured and what actually happens in the very moment it is started.

Pre-requisites

As for every technology, certain pre-requisites (tools) are to be installed first.

Node.js

Node.js is a very popular platform that allows running JavaScript code outside the browser. Differently put, a JavaScript file can be run from the command line.

It ca be downloaded it from https://nodejs.org and installed locally very easily by following the steps. For this project version 14.16.0 is used. The version can be checked with the following command.

> node -v v14.16.0 ...