Actualmente estoy tratando de seguir un tutorial sobre cómo hacer un clon de Google Maps y ahora terminé con la compilación. Luego intenté ejecutar el comando npm start, pero cuando lo hago, recibo los siguientes errores:
npm ERR! code ENOENT npm ERR! syscall open npm ERR! path C:\Users\mikai\OneDrive\Skrivebord\Code\websites\Maps\package.json npm ERR! errno -4058 npm ERR! enoent ENOENT: no such file or directory, open 'C:\Users\example\example\example\example\example\example\example' npm ERR! enoent This is related to npm not being able to find a file. npm ERR! enoentYa intenté borrar mi caché ejecutando el comando npm cache clean y luego ejecuté npm start pero sigo teniendo los mismos errores. ¿Hay alguien que se haya encontrado con los mismos errores y haya encontrado una solución?
aquí el enlace al tutorial: https://javascript.plainenglish.io/build-a-google-maps-clone-in-less-than-20-minutes-6f7c68db13e
aquí está el archivo package.json:
{ "name": "google-maps-clone", "version": "0.1.0", "private": true, "dependencies": { "@testing-library/jest-dom": "^5.14.1", "@testing-library/react": "^11.2.7", "@testing-library/user-event": "^12.8.3", "react": "^17.0.2", "react-dom": "^17.0.2", "react-scripts": "4.0.3", "web-vitals": "^1.1.2" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" }, "eslintConfig": { "extends": [ "react-app", "react-app/jest" ] }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] } }