找不到模块' @ google-cloud / logging'

时间:2018-01-28 15:53:23

标签: firebase google-cloud-functions

我是firebase函数的新手。在我的函数/ index.js中我定义了:

const Logging = require('@google-cloud/logging');

当我运行firebase deploy --debug时,我经常会出现错误

 Error parsing triggers: Cannot find module '@google-cloud/logging'

为什么我会收到此错误???

(顺便说一句,在firebase init中,我选择了Functionsenter image description here

1 个答案:

答案 0 :(得分:9)

在将模块安装到项目中之前,您无法使用该模块,它会显示在您的package.json中。在functions文件夹中运行:

npm install @google-cloud/logging