16

给个IP,有没有node.js模块可以判断它在哪个城市和哪个州?

4

2 回答 2

12

你看过node.js 模块页面吗?

它列出了GeoIPnode-geoip以及node-maxmindnode-maxmind-native

于 2011-08-01T02:52:50.867 回答
1

我发现node-maxmind是功能最完整且易于使用的模块。您需要从 maxmind下载页面下载文件,然后您可以像这样使用它:

maxmind = require 'maxmind'
maxmind.init('GeoLiteCity.dat')
maxmind.getLocation('67.188.232.131')

{ countryCode: 'US',
  countryName: 'United States',
  region: 'CA',
  city: 'Mountain View',
  postalCode: '94043',
  latitude: 37.41919999999999,
  longitude: -122.0574,
  dmaCode: 0,
  areaCode: 0,
  metroCode: 0,
  regionName: 'California' }

使用通常需要您安装地理定位数据库并定期更新它的模块的替代方法是使用地理定位 API。我自己的服务之一是http://ipinfo.io。这是使用出色的请求模块调用它的示例:

request = require 'request'
request.get('http://ipinfo.io/67.188.232.131', {json: true}, (e, r) -> console.log r.body)

{ ip: '67.188.232.131',
  hostname: 'c-67-188-232-131.hsd1.ca.comcast.net',
  city: 'Mountain View',
  region: 'California',
  country: 'US',
  loc: '37.4192,-122.0574',
  org: 'AS7922 Comcast Cable Communications, Inc.',
  postal: '94043' }

有关详细信息,请参阅http://ipinfo.io/developers 。

于 2014-08-07T06:41:33.837 回答