- Download and Install Git For Windows or Git For Mac.
- Download and Install Node. Download the LTS version.
- Download and Install VSCode.
Open terminal and try following commands:
// should print out the node version
node -v
// should print out the npm version
npm -v
Open terminal and type the following command to clone the repository:
git clone https://github.com/innovation-stack/ng-freshers.git
npm install -g @angular/cli
// This will install all project's dependencies and dev-dependencies listed in package.json
cd ng-freshers
npm install
Open terminal and type the following command:
npm start
Once the project is compiled, head over to your favorite browser and enter URL http://localhost:4200
to access the application.