0

我正在尝试在 IBM Cloud Functions 中执行代码 node.js,但我有一个未预安装的需求。它的 const {google} = require('googleapis') 我该如何安装?

4

1 回答 1

0

将操作打包为 zip 文件,并包含一个node_modules具有所需外部依赖项 ( googleapis) 的目录。

官方文档有关于这种方法的更多细节:https ://github.com/apache/incubator-openwhisk/blob/master/docs/actions-node.md#packaging-an-action-as-a-nodejs-module

于 2018-09-25T17:42:36.910 回答