如何将expressjs服务器绑定到特定的IP
就像是
app.listen(8888, '192.168.0.101');
相当于nodejs:
http.createServer(onRequest).listen(8888,'192.168.0.101');
node.js express
express ×1
node.js ×1