Skip to content

nanuda/GeoIP

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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('node-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' }

About

Search country by IP

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%