/
Local Development Environment Setup (Frontend)

Local Development Environment Setup (Frontend)

Project Setup: Steps to run the client portal project:

  1. Download an IDE (VS Code/Sublime): Download VS Code

  2. Create a folder and clone the project using the following command:

    git clone https://gitlab.com/eshopbox-team/eshopbox-client-portal-frontend.git
  3. Check the following versions in your system:

    • Check Node Package Manager (npm) version:

      npm -v

      It should be 6.14.13. If not, install the specific version using the command:

      npm i -g npm@6.14.13
    • Check the Node.js version:

      node -v

      It should be v14.17.3. If not, you can upgrade your Node.js version by following the instructions here: Update Node.js to the Latest Version

  4. Once the Node.js and npm versions are installed as mentioned above:

    • Navigate to the project folder in the command line or VS Code terminal.

    • Run the following command to run the project locally:

      npm start

      or

      ng s -o
    • If the compilation is successful, open your browser and navigate to http://localhost:4200/.

    • Log in to the application.

To Install Multiple Node Versions:

  • To install multiple node versions, you can use a Node Version Manager (NVM).

  • Here is the link to the official NVM repository: Node Version Manager

Related content