npm ERR! asyncWrite is not a function

前端 未结 16 1813
既然无缘
既然无缘 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 22:09

    I am guessing it is an incompatibility between npm v5 and node v10. To solve this I downgraded node to v9, upgraded npm to v6, then upgraded node to v10:

    n 9.10.1
    npm i -g npm
    n stable
    

提交回复
热议问题