我必须在节点 js 监听端口 80 中运行三个单独的应用程序。现在我正在使用这种方法
app.get('/barcelona/*', function(request, response) {
});
app.get('/real_madrid/*', function(request, response) {
});
app.get('/manchester/*', function(request, response) {
});
当我在“barcelona”或“real_madrid”或“manchester”中更改某些内容时,我必须重新启动我的所有应用程序。如果有任何语法错误,整个应用程序将关闭。我想要php之类的东西。应用程序中的错误不会相互影响。我该怎么做?