簡體   English   中英

ReactJs 錯誤:npm 啟動不工作,我還綁定了“npm cache clean --force”。 我被困在我的項目中間

[英]ReactJs error : npm start not working , I also tied “ npm cache clean --force ”. I am stuck in the middle of my project

這是錯誤:

my-app@0.1.0 start /home/gaurav/Desktop/Django + React/Saurav Hardware/saurav_hardware/my-app react-scripts start

                sh: 1: react-scripts: not found
                npm ERR! code ELIFECYCLE
                npm ERR! syscall spawn
                npm ERR! file sh
                npm ERR! errno ENOENT
                npm ERR! my-app@0.1.0 start: `react-scripts start`
                npm ERR! spawn ENOENT
                npm ERR! 
                npm ERR! Failed at the my-app@0.1.0 start script.
                npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
                npm WARN Local package.json exists, but node_modules missing, did you mean to install?

                npm ERR! A complete log of this run can be found in:
                npm ERR!     /home/gaurav/.npm/_logs/2020-05-20T20_38_00_671Z-`enter code here`debug.log



            [// This is my package.json]
            {
              "name": "my-app",
              "version": "0.1.0",
              "private": true,
              "dependencies": {
                "@testing-library/jest-dom": "^4.2.4",
                "@testing-library/react": "^9.5.0",
                "@testing-library/user-event": "^7.2.1",
                "react": "^16.13.1",
                "react-dom": "^16.13.1",
                "react-icons": "^3.10.0",
                "react-router-dom": "^5.2.0",
                "react-scripts": "3.4.1"
              },
              "scripts": {
                "start": "react-scripts start",
                "build": "react-scripts build",
                "test": "react-scripts test",
                "eject": "react-scripts eject"
              },
              "eslintConfig": {
                "extends": "react-app"
              },
              "browserslist": {
                "production": [
                  ">0.2%",
                  "not dead",
                  "not op_mini all"
                ],
                "development": [
                  "last 1 chrome version",
                  "last 1 firefox version",
                  "last 1 safari version"
                ]
              }
            }

每次我嘗試啟動 npm 時都會發生這種情況。 它昨天工作正常,但完全停止了。我該怎么辦? 這個 package.json 文件中缺少什么? 我也無法安裝節點模塊......!

您尚未安裝所有模塊。 運行npm install以安裝package.json中指定的模塊,然后npm start工作。 請注意,找不到react-scripts的錯誤消息,這是您未安裝 package 的線索

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM