我曾经将我的 Angular 应用程序部署到 azure Web 应用程序。并想尝试使用 nodejs webapp。
谁能帮我这样做的步骤是什么?这与我从 dist 文件夹复制文件并将其放在 d:\home\wwwroot\sites\ 中的其他 webapp 相同吗
现在,当我将内容转储到 nodejs webapp 的 \site 文件夹中时。我刚刚收到“Hello world”消息。这是此位置的 server.js:
var http = require('http');
http.createServer(function (req, res) {
res.writeHead(200, { 'Content-Type': 'text/html' });
res.end('Hello, world!');
}).listen(process.env.PORT || 8080);
谢谢