Technical requirements
The chapter contains various code samples from a new Angular project. You can find the related source code in the chapter-02
folder of the following GitHub repository:.
Before diving into the setup process, it’s important to ensure that your system meets the necessary technical requirements for development. Let’s take a look at the key components you’ll need to have in place:
- Node.js (NVM): Install Node.js, a JavaScript runtime, using Node Version Manager (NVM) to manage multiple Node.js versions on your system. You can download and install NVM from the official website: https://github.com/nvm-sh/nvm. If your company imposes restrictions on the usage of NVM, please refer to the official Node.js website (https://nodejs.org) for installation instructions and follow the provided guide.
- npm: Choose npm for managing dependencies in your Angular projects. It comes bundled with Node.js, so if you have Node.js installed, you will...