科尔多瓦:找不到模块'uuid'



每次我尝试运行任何 cordova 命令时,都会收到此错误:

$ cordova build --release android
Android Studio project detected
(node:26671) UnhandledPromiseRejectionWarning: Unhandled promise rejection (rejection id: 1): Error: Cannot find module 'uuid'
(node:26671) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.

我正在使用 Node v8 和 NPM v5,尝试了不同的 Node/NPM 版本,但总是收到相同的错误。

我最近在我的项目中遇到了这个问题,我们不得不用 Cordova Micro VPN 插件包装我们的 cordova 应用程序。以下命令解决了我的问题。

npm install uuid

让我知道它是否有帮助。

最新更新