标签: javascript node.js http
我有一个http服务器正在侦听端口80:
require('http').createServer(app).listen(80);
如何以编程方式使其在10秒后取消端口80?
答案 0 :(得分:4)
要让服务器停止收听,请使用server.close。
server.close
答案 1 :(得分:1)
如果您希望服务器运行,请更改端口:
setTimeout(function() { app.set('port', 1337); }, 10000);
那样的东西?