Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我刚刚制作了我的第一个不错的 Google Cloud Function,现在我想将它重构为库。
例如,我有我的云函数,我想需要一个我创建的库,而不是从 NPM 安装的东西。
如何将这些库部署到 Google Cloud Functions?
如果我正确理解你的问题,你想从你的common.js文件中创建一个模块。
common.js
如果是这种情况,在 中common.js,像这样导出它:
export default function(){ // Here is your common code }
然后将其导入您的函数文件:
import common from './common.js';
尝试使用--include-node-modules标志来包含已node_modules部署源的文件夹。
--include-node-modules
node_modules