`node-pre-gyp install --fallback-to-build` failed during MeanJS installation on OSX

后端 未结 16 2217
遇见更好的自我
遇见更好的自我 2020-12-13 23:59

I just bought myself a mac book after using Windows for a long time.

I was trying to work on a MeanJS project that I had been working on. Doing npm install

16条回答
  •  庸人自扰
    2020-12-14 00:46

    Happened to me on node 13.7.0 and npm 6.13.6 (macOS Mojave).

    I had the following as part of my errors:

    found X vulnerabilities (Y moderate, Z high)
      run `npm audit fix` to fix them, or `npm audit` for details
    

    And running the following fixed the problem:

    1. $ npm audit fix

    2. $ npm install

提交回复
热议问题