Deploying microsoft bots nodejs to firebase functions
问题 I have developed a simple bot using microsoft bot framework with nodejs. the code is just two files like below. I saw on google firebase function docs https://firebase.google.com/docs/functions/http-events#using_existing_express_apps it seems i can simply deploy my ms bot nodejs to firebase. question is how exactly should i do it . app.js 'use strict'; var express = require('express'); var app = express(); // Adding a bot to our app var bot = require('./bot'); bot.setup(app); // Adding a