node-geoip

Search country by IP

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
node-geoip
1.0.19 years ago9 years agoMinified + gzip package size for node-geoip in KB

Readme

GeoIP
Fast search country by IP
Cli
[gap@localhost geoip]$ ./bin/geoip "131.221.27.2" "156.22.33.7" "100.11.1.1" "2.159.255.255" "5.39.127.249"
ip = 131.221.27.2 	code = PA 	country = Panama
ip = 156.22.33.7 	code = AU 	country = Australia
ip = 100.11.1.1 	code = US 	country = United States
ip = 2.159.255.255 	code = IT 	country = Italy
ip = 5.39.127.249 	code = LT 	country = Lithuania
Example
var Geo = require('geoip');

var geoIP = new Geo.GeoIP(Geo.Database);
try {
    console.dir(geoIP.getCountry('2.159.255.205'));
} catch (ex) {
    console.dir(ex);
}

[gap@localhost example]$ node example.js 
{ code: 'IT', country: 'Italy' }