Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
geoip-lite
Advanced tools
The geoip-lite npm package provides a fast and lightweight IP geolocation library for Node.js. It allows you to look up the geographic location of an IP address, including country, region, and city information. The package uses a local database, which means it does not require an external service or API call, making it suitable for high-performance applications.
IP to Country Lookup
This feature allows you to look up the country associated with a given IP address. The code sample demonstrates how to use the `lookup` method to retrieve the country code for the IP address '207.97.227.239'.
const geoip = require('geoip-lite');
const ip = '207.97.227.239';
const geo = geoip.lookup(ip);
console.log(geo.country); // Output: 'US'
IP to City Lookup
This feature allows you to look up the city associated with a given IP address. The code sample demonstrates how to use the `lookup` method to retrieve the city name for the IP address '207.97.227.239'.
const geoip = require('geoip-lite');
const ip = '207.97.227.239';
const geo = geoip.lookup(ip);
console.log(geo.city); // Output: 'San Antonio'
IP to Region Lookup
This feature allows you to look up the region (state or province) associated with a given IP address. The code sample demonstrates how to use the `lookup` method to retrieve the region code for the IP address '207.97.227.239'.
const geoip = require('geoip-lite');
const ip = '207.97.227.239';
const geo = geoip.lookup(ip);
console.log(geo.region); // Output: 'TX'
IP to Latitude and Longitude Lookup
This feature allows you to look up the latitude and longitude coordinates associated with a given IP address. The code sample demonstrates how to use the `lookup` method to retrieve the coordinates for the IP address '207.97.227.239'.
const geoip = require('geoip-lite');
const ip = '207.97.227.239';
const geo = geoip.lookup(ip);
console.log(geo.ll); // Output: [29.4889, -98.3987]
The maxmind package provides access to MaxMind's GeoIP2 and GeoLite2 databases. It offers more detailed and accurate geolocation data compared to geoip-lite, but requires downloading and updating the database files regularly. It also supports additional data points such as ISP and organization information.
The ipstack package is a wrapper for the ipstack API, which provides IP geolocation data. It offers a wide range of data points, including country, region, city, ZIP code, latitude, longitude, and more. Unlike geoip-lite, it requires an API key and makes external HTTP requests, which may introduce latency.
The ipinfo package is a client for the IPinfo.io API, which provides IP geolocation and other related data. It offers detailed information such as country, region, city, postal code, latitude, longitude, and ASN. Similar to ipstack, it requires an API key and makes external HTTP requests.
A native NodeJS API for the GeoLite data from MaxMind.
This product includes GeoLite data created by MaxMind, available from http://maxmind.com/
MaxMind provides a set of data files for IP to Geo mapping along with opensource libraries to parse and lookup these data files. One would typically write a wrapper around their C API to get access to this data in other languages (like JavaScript).
GeoIP-lite instead attempts to be a fully native JavaScript library. A converter script converts the CSV files from MaxMind into an internal binary format (note that this is different from the binary data format provided by MaxMind). The geoip module uses this binary file to lookup IP addresses and return the country, region and city that it maps to.
Both IPv4 and IPv6 addresses are supported, however since the GeoLite IPv6 database does not currently contain any city or region information, city and region lookups are only supported for IPv4.
I was really aiming for a fast JavaScript native implementation for geomapping of IPs. My prime motivator was the fact that it was really hard to get libgeoip built for Mac OSX without using the library from MacPorts.
So why are we called geoip-lite? npm
already has a geoip package which provides a JavaScript
binding around libgeoip from MaxMind. The geoip
package is fully featured and supports everything that the MaxMind APIs support,
however, it requires libgeoip
to be installed on your system.
geoip-lite
on the other hand is a fully JavaScript implementation. It is not as fully featured as geoip
however, by reducing its
scope, it is about 40% faster at doing lookups. On average, an IP to Location lookup should take 20 microseconds on a Macbook Pro.
IPv4 addresses take about 6 microseconds, while IPv6 addresses take about 30 microseconds.
var geoip = require('geoip-lite');
var ip = "207.97.227.239";
var geo = geoip.lookup(ip);
console.log(geo);
{ range: [ 3479299040, 3479299071 ],
country: 'US',
region: 'CA',
city: 'San Francisco',
ll: [37.7484, -122.4156] }
$ npm install geoip-lite
Then download the city data files from https://github.com/bluesmoon/node-geoip/tree/master/data
You need to get geoip-city.dat
and geoip-city-names.dat
and put them into the data/
directory
of this package.
geoip-lite is completely synchronous. There are no callbacks involved. All blocking file IO is done at startup time, so all runtime calls are executed in-memory and are fast. Startup may take up to 200ms while it reads into memory and indexes data files.
If you have an IP address in dotted quad notation, IPv6 colon notation, or a 32 bit unsigned integer (treated
as an IPv4 address), pass it to the lookup
method. Note that you should remove any [
and ]
around an
IPv6 address before passing it to this method.
var geo = geoip.lookup(ip);
If the IP address was found, the lookup
method returns an object with the following structure:
{
range: [ <low bound of IP block>, <high bound of IP block> ],
country: 'XX', // 2 letter ISO-3166-1 country code
region: 'RR', // 2 character region code. For US states this is the 2 letter
// ISO-3166-2 subcountry code for other countries, this is the
// FIPS 10-4 subcountry code
city: "City Name", // This is the full city name
ll: [<latitude>, <longitude>] // The latitude and longitude of the city
}
The actual values for the range
array depend on whether the IP is IPv4 or IPv6 and should be
considered internal to geoip-lite
. To get a human readable format, pass them to geoip.pretty()
If the IP address was not found, the lookup
returns null
If you have a 32 bit unsigned integer, or a number returned as part of the range
array from the lookup
method,
the pretty
method can be used to turn it into a human readable string.
console.log("The IP is %s", geoip.pretty(ip));
This method returns a string if the input was in a format that geoip-lite
can recognise, else it returns the
input itself.
This package includes the GeoLite database from MaxMind. This database is not the most accurate database available,
however it is the best available for free. You can use the commercial GeoIP database from MaxMind with better
accuracy by buying a license from MaxMind, and then using the conversion utility to convert it to a format that
geoip-lite understands. You will need to use the .csv
files from MaxMind for conversion.
Also note that on occassion, the library may take up to 5 seconds to load into memory. This is largely dependent on how busy your disk is at that time. It can take as little as 200ms on a lightly loaded disk. This is a one time cost though, and you make it up at run time with very fast lookups.
geoip-lite
is Copyright 2011-2012 Philip Tellis philip@bluesmoon.info and the latest version of the code is
available at https://github.com/bluesmoon/node-geoip
There are two licenses for the code and data. See the LICENSE file for details.
FAQs
A light weight native JavaScript implementation of GeoIP API from MaxMind
The npm package geoip-lite receives a total of 104,374 weekly downloads. As such, geoip-lite popularity was classified as popular.
We found that geoip-lite demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.