如何使用Node js在Google Cloud中运行项目

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用Node js在Google Cloud中运行项目相关的知识,希望对你有一定的参考价值。

如何在没有运行命令的情况下使用Node js在Google Cloud Platform中运行新项目,一次又一次地在Google Cloud Shell中运行文件

答案

您可以按照StackOverflow answer中的说明安装管理程序模块。

要安装supervisor模块,请运行以下命令:

npm安装主管-g

然后使用以下命令运行应用程序:

主管-e html,js app.js

这将监视所有.html和.js文件以进行任何更改,并在不重新启动应用程序的情况下更新网页内容。当然,您需要重新加载网页。

以上是关于如何使用Node js在Google Cloud中运行项目的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 Google Cloud Compute Engine 为 Node.JS 应用程序配置端口转发

如何从Google Cloud Function(Cheerio,Node.js)发出多个http请求

如何使用 Node.js 将 base64 编码图像(字符串)直接上传到 Google Cloud Storage 存储桶?

使用 node.js 标准环境在 AppEngine 上找不到模块 @google-cloud/firestore

使用 node.js 从 Google Cloud 函数中的 IncomingMessage 对象读取正文

如何从 Node 中的图像 url 将图像上传到 Google Cloud Storage?