For macOS/Linux:
Open a terminal.
Run the following command to install nvm:
curl -o- <https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.2/install.sh> | bash
Check that it is installed by running:
nvm --version
For Windows:
Install the latest version of Node.js:
nvm install node
Install a specific version of Node.js:
Run the following command to install Node.js version 14.16.1:
nvm install v14.16.1
Run the following command to switch to Node.js version 14.16.1:
nvm use v14.16.1
Run the following command to install Angular CLI version 10.2.4:
npm install -g @angular/[email protected]
Clone the project repository from the version control system (e.g., Git) using the command:
git clone <https://github.com/sreehariX/MapMicroservice-angular.git>
Navigate to the cloned project directory:
cd MapMicroservice-angular
Run the following command to install all dependencies:
npm install
Run the following command to start the development server:
ng serve
Open your browser and navigate to http://localhost:4200 to see your application running.