ipware
A Node application to retrieve user's IP address
如何使用
npm install ipware
const get_ip = require('ipware')().get_ip;
...
server.listen('3000', '0.0.0.0', function () {
console.log('本地端口监听:','3000');
});
...
server.post('/', function (req, res) {
let ip_info = get_ip(req);
res.send({
data: ip_info.clientIp // 127.0.0.1
});
})
在监听中增加第二个参数 0.0.0.0
可以获得正常的IP地址
网友评论