“弃用 [email protected]:改用 uuid 模块”

“弃用 [email protected]:改用 uuid 模块”

我在尝试安装时遇到问题:

npm install -g firebase-tools

信息如下:

deprecated [email protected]: use uuid module instead

我正在尝试在 firebase 上部署一个应用程序,出现此消息后,我无法完成 firebase 网站中提到的步骤。有什么帮助吗?!

谢谢

答案1

node-uuid 模块已弃用,您需要安装 uuid 模块。

npm install -g uuid

答案2

节点 uuid现已弃用。运行以下命令:

npm uninstall --save node-uuid
npm install --save uuid

相关内容