Gathering detailed insights and metrics for geoip-lite2
Gathering detailed insights and metrics for geoip-lite2
Gathering detailed insights and metrics for geoip-lite2
Gathering detailed insights and metrics for geoip-lite2
Native NodeJS implementation of MaxMind's GeoIP API; works in node 0.6.3 and above. Improved version by Sefinek.
npm install geoip-lite2
Typescript
Module System
Min. Node Version
Node Version
NPM Version
69.3
Supply Chain
96.9
Quality
89.5
Maintenance
100
Vulnerability
88
License
JavaScript (100%)
Total Downloads
37,040
Last Day
178
Last Week
762
Last Month
2,786
Last Year
31,565
4 Stars
39 Commits
1 Branches
1 Contributors
Minified
Minified + Gzipped
Latest Version
2.2.3
Package Id
geoip-lite2@2.2.3
Unpacked Size
173.14 MB
Size
42.82 MB
File Count
27
NPM Version
11.0.0
Node Version
20.18.1
Publised On
07 Jan 2025
Cumulative downloads
Total Downloads
Last day
-16%
178
Compared to previous day
Last week
5.2%
762
Compared to previous week
Last month
9.4%
2,786
Compared to previous month
Last year
476.5%
31,565
Compared to previous year
5
4
A native Node.js API for the GeoLite data from MaxMind.
This product includes GeoLite data created by MaxMind, available from maxmind.com.
This module is an enhanced and updated version of geoip-lite, carefully designed to meet the latest programming standards.
All components have been thoroughly updated to ensure optimal performance and functionality. The module now runs even faster, thanks to file minification!
Furthermore, the testing process has been improved with the adoption of the Jest testing library.
I am not the primary creator of this! All copyright rights belong to the original authors.
Remember to regularly update the Maxmind database. You'll need the token for this.
This module requires a significant amount of RAM because geolocation data is stored in memory. However, you can always opt for the official alternative, the geoip2-api module, which sends requests to an API server and retrieves information about specific IP addresses directly from there.
You can see this module in action using my official API. The API interface is public and can be safely used in your projects without any limits. Happy coding!
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 geo-ip 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, region and postal code 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.
GeoIP-Lite is a fully JavaScript implementation of the MaxMind GeoIP API. It is not as fully featured as bindings that use libgeoip
.
By reducing scope, this package 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.
1const geoIp2 = require('geoip-lite2'); 2 3const ip = '146.19.109.255'; 4const geo = geoIp2.lookup(ip); 5 6console.log(geo);
1{ 2 "range": [ 2450746624, 2450746879 ], 3 "country": "PL", 4 "region": "14", 5 "eu": "1", 6 "timezone": "Europe/Warsaw", 7 "city": "Warsaw", 8 "ll": [ 52.2296, 21.0067 ], 9 "metro": 0, 10 "area": 20 11}
1npm install geoip-lite2
Run cd node_modules/geoip-lite2 && npm run updatedb license_key=YOUR_LICENSE_KEY
to update the data files. (Replace YOUR_LICENSE_KEY
with your license key obtained from maxmind.com)
You can create maxmind account here.
[!NOTE]
This requires a lot of RAM. It is known to fail on a Digital Ocean or AWS micro instance. There are no plans to change this. GeoIP-Lite2 stores all data in RAM in order to be fast. If you need an external API that provides GeoIP, you can use this.
GeoIP-Lite2 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.
1const geo = geoIp2.lookup(ip);
If the IP address was found, the lookup
method returns an object with the following structure:
1{ 2 range: [ <low bound of IP block>, <high bound of IP block> ], 3 country: 'CC', // 2 letter ISO-3166-1 country code 4 region: 'RR', // Up to 3 alphanumeric variable length characters as ISO 3166-2 code 5 // For US states this is the 2 letter state 6 // For the United Kingdom this could be ENG as a country like βEngland 7 // FIPS 10-4 subcountry code 8 eu: '0', // 1 if the country is a member state of the European Union, 0 otherwise. 9 timezone: 'Country/Zone', // Timezone from IANA Time Zone Database 10 city: 'City Name', // This is the full city name 11 ll: [<latitude>, <longitude>], // The latitude and longitude of the city 12 metro: <metro code>, // Metro code 13 area: <accuracy_radius> // The approximate accuracy radius (km), around the latitude and longitude 14}
The actual values for the range
array depend on whether the IP is IPv4 or IPv6 and should be
considered internal to geoip-lite2
. 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.
1console.log('The IP is %s', geoIp2.pretty(ip));
This method returns a string if the input was in a format that geoip-lite2
can recognise, else it returns the
input itself.
This package contains an update script that can pull the files from MaxMind and handle the conversion from CSV. A npm script alias has been setup to make this process easy. Please keep in mind this requires internet and MaxMind rate limits that amount of downloads on their servers.
You will need, at minimum, a free license key obtained from maxmind.com to run the update script.
Package stores checksums of MaxMind data and by default only downloads them if checksums have changed.
1# Update data if new data is available 2npm run updatedb license_key=YOUR_LICENSE_KEY 3 4# Force update data even if checksums have not changed 5npm run updatedb-force license_key=YOUR_LICENSE_KEY
You can also run it by doing:
1node ./node_modules/geoip-lite2/utils/updatedb.js license_key=YOUR_LICENSE_KEY
If you have a server running geoip-lite2
, and you want to reload its geo data, after you finished update, without a restart.
You can do it programmatically, calling after scheduled data updates
1// Synchronously 2geoIp2.reloadDataSync(); 3 4// Asynchronously 5geoIp2.reloadData(() => { 6 console.log('Done'); 7});
You can enable the data watcher to automatically refresh in-memory geo data when a file changes in the data directory.
1geoIp2.startWatchingDataUpdate();
This tool can be used with npm run updatedb
to periodically update geo data on a running server.
The following environment variables can be set.
1# Override the default node_modules/geoip-lite/data dir 2GEOTMPDIR=/some/path 3 4# Override the default node_modules/geoip-lite/tmp dir 5GEODATADIR=/some/path
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 occasion, 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.
Quick test on memory consumption shows that library uses around 100 MB per process.
1const geoIp2 = require('geoip-lite2'); 2console.log(process.memoryUsage()); 3 4/** 5 * Output: 6 * { 7 * rss: 126365696, 8 * heapTotal: 7753728, 9 * heapUsed: 5844880, 10 * external: 164098897, 11 * arrayBuffers: 163675390 12 * } 13**/
GeoIP-Lite
is Copyright 2011-2018 Philip Tellis philip@bluesmoon.info
GeoIP-Lite2
is Copyright 2023-2024 Sefinek contact@sefinek.net (https://sefinek.net)
There are two licenses for the code and data. See the LICENSE file for details.
No vulnerabilities found.
No security vulnerabilities found.