如何用node.js 获取访问者的公网IP

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用node.js 获取访问者的公网IP相关的知识,希望对你有一定的参考价值。

参考技术A os.networkInterfaces()
参考这里:http://nodejs.org/api/os.html#os_os_networkinterfaces
Get a list of network interfaces:
lo0:
[ address: '::1', family: 'IPv6', internal: true ,
address: 'fe80::1', family: 'IPv6', internal: true ,
address: '127.0.0.1', family: 'IPv4', internal: true ],
en1:
[ address: 'fe80::cabc:c8ff:feef:f996', family: 'IPv6',
internal: false ,
address: '10.0.1.123', family: 'IPv4', internal: false ],
vmnet1: [ address: '10.99.99.254', family: 'IPv4', internal: false ],
vmnet8: [ address: '10.88.88.1', family: 'IPv4', internal: false ],
ppp0: [ address: '10.2.0.231', family: 'IPv4', internal: false ] 本回答被提问者采纳

Node js获取本地ip地址

使用webpack 和 vue进行本地开发的时候,可能会遇到让同在局域网的同事访问。。。我们在config/index.js文件中配置的dev环境一般情况如下:

proxyTable: {
   \'/apis\': {
        target: `http://公网ip`,
        changeOrigin: true,
        // secure: false,  //target默认情况下,不接受运行在HTTPS上,且使用了无效证书的后端服务器。如果你想要接受, 则需设置该项为false
        pathRewrite: {
          \'^/apis\': \'\'
        },
        ws: true
    },
},
host: \'0.0.0.0\',  // can be overwritten by process.env.HOST

port: 80, // can be overwritten by process.env.PORT, if port is in use, a free one will be determined

我们前端访问页面就是 http://localhost ,我们访问后端接口是用 localhost域名访问的(webpack会给我们代理转发请求,不会出现跨域)。

如果同事访问你的页面,只能通过你的局域网ip地址进行访问, 比如你的地址是 172.16.79.192,你的同事访问这个地址,页面访问正常,但是访问接口回报跨域(172.16.79.192和localhost).

这时候你可以改config/index.js文件中的host为你的ip,然后在改访问后端接口为你的ip,重新启动项目,然后你的同事才可以正常访问和使用。。。

我们仔细想一下,如果在启动的时候,将上面的解决方案搞定,可不可行呢?当然可以。。。我们可以在项目启动前,用在node获取你的电脑的局域网地址,分别赋值即可,下面贴一段node获取本地ip地址的代码:

const os = require(\'os\');

/**
 * 获取当前机器的ip地址
 */
function getIpAddress() {
  var ifaces=os.networkInterfaces()

  for (var dev in ifaces) {
    let iface = ifaces[dev]

    for (let i = 0; i < iface.length; i++) {
      let {family, address, internal} = iface[i]

      if (family === \'IPv4\' && address !== \'127.0.0.1\' && !internal) {
        return address
      }
    }
  }
}

let ipAddress = getIpAddress()
console.log(ipAddress)

最后附上我测试的截图:

 

 参考资料:

  http://nodejs.cn/api/os.html#os_os_networkinterfaces

 

以上是关于如何用node.js 获取访问者的公网IP的主要内容,如果未能解决你的问题,请参考以下文章

如何用公网IP访问IDEA的Webapp

请问如何用java获取公网IP?

apache安装后如何用自己的IP让别人访问,我试过了,别人ping不通我,这个怎么办啊??

Node js获取本地ip地址

Node js获取本地ip地址

连接路由器后不能用公网ip访问nginx