运行Node js restful server作为windows服务

时间:2018-06-14 08:22:18

标签: node.js express windows-services

我使用express:

创建了基本节点服务器应用程序
var app = express();
app.get('/helloWorld', function(req, res){
    res.setHeader('Access-Control-Allow-Origin', '*')'
    res.setStatus(200);
    res.send("Hello World!");
})

app.listen('15000', function () {
    console.log("Server running...");
})

当我运行"节点MyServer.js"。

时,服务器正常工作

为了使服务器更稳定,我想将其作为Windows服务运行,我该怎么做?

如果还有其他简单的方法来托管服务器(而不是从cmd运行它),这对我来说也是一个很好的解决方案。

0 个答案:

没有答案