如何在Firebase上部署带有module.exports的nodejs应用程序



我正在为我的slack bot使用node js和yarn。它在本地运行良好,但我不知道如何在firebase上部署它来让我的bot运行。这是我的index.js:

const functions = require('firebase-functions');
require = require("esm")(module/*, options */);
module.exports = require("./app.js");

但要在firebase上部署它,我需要类似的东西,我的index.js:

const app = express();
exports.widgets = functions.https.onRequest(app);

但我没有使用express((。那么我该怎么做呢?附言:我所有的机器人逻辑都在app.js中,这就是我require("./app.js");的原因

您可以使用Firebase Hosting进行部署:https://firebase.google.com/docs/hosting/deploying.它很容易使用。

相关内容

  • 没有找到相关文章

最新更新