error: This is probably not a problem with npm. There is likely additional logging output above

后端 未结 14 2238
温柔的废话
温柔的废话 2020-12-13 20:34

In my project, I\'m using Angular6 for the frontend. Now what I\'m trying to do is deploy my project which is in remote server into the actual server. I\'m using npm r

相关标签:
14条回答
  • 2020-12-13 21:06

    I already have the same problem . and I fix it using npm update & npm cache clean --force

    0 讨论(0)
  • 2020-12-13 21:09

    Check if port you want to run your app is free. For me, it was the problem.

    0 讨论(0)
  • 2020-12-13 21:09

    Novice mistake. Make sure your package.json file is coded correctly. I had:

    "start": "index node.js"
    instead of:
    "start": "node index.js"
    

    17

    Delete your package-lock.json file and node_modules folder. Then do npm cache clean

    npm cache clean --force do npm install

    0 讨论(0)
  • 2020-12-13 21:11

    Following steps solves my problem: Add "C:\Windows\System32\" to your system path variables Run npm eject, Run npm start, Run npm eject, and agian run npm start And it worked

    0 讨论(0)
  • 2020-12-13 21:14

    I'm new with react... Well i had the same output:

    Starting the development server...
    
    events.js:196
          throw er; // Unhandled 'error' event
          ^
    
    Error: ENOSPC: System limit for number of file watchers reached, watch '/opt/lampp/htdocs/react-tuto/public'
        at FSWatcher.<computed> (internal/fs/watchers.js:168:26)
        at Object.watch (fs.js:1351:34)
        at createFsWatchInstance (/opt/lampp/htdocs/react-tuto/node_modules/chokidar/lib/nodefs-handler.js:38:15)
        at setFsWatchListener (/opt/lampp/htdocs/react-tuto/node_modules/chokidar/lib/nodefs-handler.js:81:15)
        at FSWatcher.NodeFsHandler._watchWithNodeFs (/opt/lampp/htdocs/react-tuto/node_modules/chokidar/lib/nodefs-handler.js:233:14)
        at FSWatcher.NodeFsHandler._handleDir (/opt/lampp/htdocs/react-tuto/node_modules/chokidar/lib/nodefs-handler.js:429:19)
        at FSWatcher.<anonymous> (/opt/lampp/htdocs/react-tuto/node_modules/chokidar/lib/nodefs-handler.js:477:19)
        at FSWatcher.<anonymous> (/opt/lampp/htdocs/react-tuto/node_modules/chokidar/lib/nodefs-handler.js:482:16)
        at FSReqCallback.oncomplete (fs.js:165:5)
    Emitted 'error' event on FSWatcher instance at:
        at FSWatcher._handleError (/opt/lampp/htdocs/react-tuto/node_modules/chokidar/index.js:260:10)
        at createFsWatchInstance (/opt/lampp/htdocs/react-tuto/node_modules/chokidar/lib/nodefs-handler.js:40:5)
        at setFsWatchListener (/opt/lampp/htdocs/react-tuto/node_modules/chokidar/lib/nodefs-handler.js:81:15)
        [... lines matching original stack trace ...]
        at FSReqCallback.oncomplete (fs.js:165:5) {
      errno: -28,
      syscall: 'watch',
      code: 'ENOSPC',
      path: '/opt/lampp/htdocs/react-tuto/public',
      filename: '/opt/lampp/htdocs/react-tuto/public'
    }
    npm ERR! code ELIFECYCLE
    npm ERR! errno 1
    npm ERR! react-tuto@0.1.0 start: `react-scripts start`
    npm ERR! Exit status 1
    npm ERR! 
    npm ERR! Failed at the react-tuto@0.1.0 start script.
    npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
    
    npm ERR! A complete log of this run can be found in:
    npm ERR!     /home/paulo/.npm/_logs/2019-12-16T16_46_27_856Z-debug.log
    

    I just tried:

    sudo npm start
    

    And it worked.

    0 讨论(0)
  • 2020-12-13 21:18

    Deleting the package-lock.json did it for me. I'd suggest you not push package-lock.json to your repo as I wasted hours trying to npm install with the package-lock.json in the folder which gave me helluva errors.

    0 讨论(0)
提交回复
热议问题