因此,我正在尝试部署使用多个JavaScript文件的函数。我看到的部署功能的唯一方法是使用单个index.js文件。有什么可以添加更多文件的吗?
我具有CLI设置,但仍然仅看到上传单个js文件而非zip的示例。
答案 0 :(得分:3)
支持IBM Cloud Functions操作,该操作的逻辑包含在多个文件中,而不仅限于Node.js / Javascript。 documentation for IBM Cloud Function has a section on how to create an action as Node.js module。然后,您可以将文件打包为单个ZIP文件,并在创建或更新操作时上传。
替代方案为package all into a single file using webpack或using Docker actions。