如何在 Firebase 托管上部署 Express 应用程序

Ala*_*ene 7 express firebase firebase-hosting google-cloud-functions

我已经构建了一个快速应用程序,文件夹结构如下。

如下

然后我在一个虚拟文件夹上创建了 firebase init 托管并复制了 firebase.json 和 .firebase 文件

我创建了index.js文件

    const functions = require('firebase-functions')
    const app = require('./app');
    exports.widgets = functions.https.onRequest(app);
Run Code Online (Sandbox Code Playgroud)

firebase.json

{
  "hosting": {
    "public": "public",
    "rewrite":[{
      "source": "**",
      "function": "widgets"
    }],
    "ignore": [
      "firebase.json",
      "**/.*",
      "**/node_modules/**"
    ]
  }
}
Run Code Online (Sandbox Code Playgroud)

还将 firebase 生成的 index.html 复制到 public 文件夹

在此处输入图片说明

在部署我得到 index.html

在此处输入图片说明

如果我删除 index.html 并作为 localhost 运行,我将低于输出

在此处输入图片说明

我如何在 firebase 部署上执行快速应用程序(如本地主机中所示)而不是 index.html。

编辑 1

我正在关注链接

当我运行firebase serve时,出现此错误

AssertionError [ERR_ASSERTION]: missing path at Module.require (module.js:583:3) at require (internal/module.js:11:18) at InitializeFirebaseAdminStubs (C:\Users\alaksandarjesus\AppData\Roaming\npm\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:231:18) at C:\Users\alaksandarjesus\AppData\Roaming\npm\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:451:9 at Generator.next () at C:\Users\alaksandarjesus\AppData\Roaming\npm\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:7:71 at new Promise () at __awaiter (C:\Users\alaksandarjesus\AppData\Roaming\npm\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:3:12) at main (C:\Users\alaksandarjesus\AppData\Roaming\npm\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:421:12) at Object. (C:\Users\alaksandarjesus\AppData\Roaming\npm\node_modules\firebase-tools\lib\emulator\functionsEmulatorRuntime.js:511:5)
Run Code Online (Sandbox Code Playgroud)

当我尝试运行firebase deploy

E:\ogst-server-firebase\functions>firebase deploy

=== Deploying to 'ogst-server-95fcc'...

i  deploying functions, hosting
i  functions: ensuring necessary APIs are enabled...
+  functions: all necessary APIs are enabled

Error: An unexpected error has occurred.
Run Code Online (Sandbox Code Playgroud)

原因是缺少公共文件夹,我手动创建(预计将使用 firebase init 函数创建)。

E:\ogst-server-firebase\functions>firebase deploy

=== Deploying to 'ogst-server-95fcc'...

i  deploying functions, hosting
i  functions: ensuring necessary APIs are enabled...
+  functions: all necessary APIs are enabled
i  functions: preparing functions directory for uploading...
i  hosting[ogst-server-95fcc]: beginning deploy...
i  hosting[ogst-server-95fcc]: found 0 files in public
+  hosting[ogst-server-95fcc]: file upload complete
i  hosting[ogst-server-95fcc]: finalizing version...
+  hosting[ogst-server-95fcc]: version finalized
i  hosting[ogst-server-95fcc]: releasing new version...
+  hosting[ogst-server-95fcc]: release complete

+  Deploy complete!

Please note that it can take up to 30 seconds for your updated functions to propagate.
Project Console: https://console.firebase.google.com/project/ogst-server-95fcc/overview
Hosting URL: https://ogst-server-95fcc.firebaseapp.com
Run Code Online (Sandbox Code Playgroud)

现在我的部署成功了。但我得到 404

答案 在index.js文件(以下上面的链接),我没有改变

module.exports = functions.https.onRequest(app); //wrong

to

exports.app = functions.https.onRequest(app); //correct
Run Code Online (Sandbox Code Playgroud)

感谢大家的支持

Dou*_*son 1

Firebase 托管更喜欢提供静态内容,而不是发送到 Cloud Functions 的重写内容。换句话说,如果请求可以由任何静态内容提供服务,则该内容将始终优先于对 Cloud Functions 的重写。

如果您希望您的网站根页面由 Cloud Functions 提供服务,这意味着您的公共文件夹中不应该有 index.html,因为 Firebase Hosting 首先会找到该文件。