npm ERR! asyncWrite is not a function

前端 未结 16 1833
既然无缘
既然无缘 2021-02-06 21:44

npm install -g firebase-tools npm ERR! asyncWrite is not a function npm ERR! pna.nextTick is not a function

npm ERR! A complete log of this run can be found in: npm ERR!

16条回答
  •  余生分开走
    2021-02-06 21:59

    I've fixed this by:

    1. Cleaning cache npm cache clean -f
    2. Upgrading node to latest version: nvm install
    3. Upgrading npm to latest version: npm i -g npm
    4. Removing dependencies: rm -rf node_modules
    5. Installing dependencies again: npm install

提交回复
热议问题