skip to Main Content

I’m trying to run the AGCloud project on windows 10. the project is built with React JS.

I cloned the main branch of the repository in my system, and then installed dependencies in both front-end and back-end using npm i command and then moved to the root directory.

and then I executed the following command:

npm start

I was expecting that the project will be compiled successfully

but I encountered the following error:

image showing error

this is error in the front-end.

3

Answers


  1. you can verify if everything is OK in the packages running:

    npm audit fix --force 
    
    Login or Signup to reply.
  2. First run "npm install".

    It installs all the required dependencies used by the project on your system.

    Then run "npm start".

    If it doesn’t work, try "npm run dev".

    Also make sure to use the right configurations for the project.

    Login or Signup to reply.
  3. If the AGCloud project fails to compile you should check Node.js and npm versions alongside verifying dependencies and upgrade or fix dependencies with vulnerabilities and install the stable version.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search