gwenf/vue3-fcc-course-basic-product-cart-demo

NPM install errors (OS:Windows 8.1, Node.js version:8.1.2, IDE: Visual Studio Code )

Closed this issue · 2 comments

I solved it. The problem is about the version of modules under the devDependicies object in the package.json file.

  1. Delete the package-lock.json file
  2. Change versions of modules to "latest" in the devDependicies object (look for package.json)
  3. Write the code that is in below to terminal or what you use for this
    "npm install" ->That code uses is installing a specific version of modules that in dependencies (dependencies are modules that are stated in the "devDependencies" object that in the "package.json" file)
  4. Finally, you can start this project with;
    "npm start"

Thank you so much for the tip. I was stuck on these npm install errors since this morning and your tips fixed the issue. Thanks

Thank you so much for the tip. I was stuck on these npm install errors since this morning and your tips fixed the issue. Thanks

You're welcome, I am happy to that i could help you :)