我看过无数关于如何使用NSSM(http://nssm.cc/)来启动NodeJS进程的文章。所以,我有以下简单的NodeJS文件:varhttp=require('http');http.createServer(function(req,res){res.writeHead(200,{'Content-Type':'text/html'});res.end('HelloWorld');}).listen(8000);console.log('Serverrunningonhttp://localhost:8000/');我正在使用此命令将NodeJS文件安装为Windows服务:"