Installations
npm install geoip-country-lite
Developer Guide
Typescript
No
Module System
CommonJS
Min. Node Version
>=0.6.3
Node Version
4.4.0
NPM Version
2.14.20
Releases
Unable to fetch releases
Contributors
Unable to fetch Contributors
Languages
JavaScript (100%)
Developer
Download Statistics
Total Downloads
62,665
Last Day
1
Last Week
13
Last Month
30
Last Year
692
GitHub Statistics
1 Stars
147 Commits
2 Watching
1 Branches
1 Contributors
Bundle Size
16.46 kB
Minified
5.45 kB
Minified + Gzipped
Package Meta Information
Latest Version
1.0.0
Package Id
geoip-country-lite@1.0.0
Size
779.84 kB
NPM Version
2.14.20
Node Version
4.4.0
Total Downloads
Cumulative downloads
Total Downloads
62,665
Last day
-80%
1
Compared to previous day
Last week
18.2%
13
Compared to previous week
Last month
-50.8%
30
Compared to previous month
Last year
72.1%
692
Compared to previous year
Daily Downloads
Weekly Downloads
Monthly Downloads
Yearly Downloads
GeoIP-country-lite
A fork of GeoIP-lite, geoip-country-light excludes all city data, which is the bulk of the data that GeoIP-lite stores into RAM. As a result, geoip-country-light is less RAM-intensive. It also doesn't require you to update any data.
Software is written by Philip Tellis philip@bluesmoon.info, latest version is available at https://github.com/bluesmoon/node-geoip
This module is a native NodeJS API for the country GeoLite data from MaxMind.
This product includes GeoLite data created by MaxMind, available from http://maxmind.com/
Software is written by Philip Tellis philip@bluesmoon.info, latest version is available at https://github.com/bluesmoon/node-geoip
Introduction
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-country-light 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 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.
Philosophy
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.
Why geoip-country-light
So why are we called geoip-country-light? 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-country-light
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.
Synopsis
1var geoip = require('geoip-country-light'); 2 3var ip = "207.97.227.239"; 4var geo = geoip.lookup(ip); 5 6console.log(geo); 7{ 8 country: 'US' 9}
Installation
1. get the library
$ npm install geoip-country-light
2. update data
$ npm run-script updatedb
API
geoip-country-light 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.
Looking up an IP address
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.
1var geo = geoip.lookup(ip);
If the IP address was found, the lookup
method returns an object with the following structure:
1{ 2 country: 'XX' // 2 letter ISO-3166-1 country code 3}
The actual values for the range
array depend on whether the IP is IPv4 or IPv6 and should be
considered internal to geoip-country-light
. To get a human readable format, pass them to geoip.pretty()
If the IP address was not found, the lookup
returns null
Caveats
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-country-light understands. You will need to use the .csv
files from MaxMind for conversion.
References
Copyright
geoip-country-light
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
License
There are two licenses for the code and data. See the LICENSE file for details.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
- Info: project has a license file: LICENSE:0
- Warn: project license file does not contain an FSF or OSI license.
Reason
Found 0/30 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
- Warn: no pull requests merged into dev branch
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
- Warn: no security policy file detected
- Warn: no security file to analyze
- Warn: no security file to analyze
- Warn: no security file to analyze
Reason
project is not fuzzed
Details
- Warn: no fuzzer integrations found
Reason
branch protection not enabled on development/release branches
Details
- Warn: branch protection not enabled for branch 'master'
Score
3
/10
Last Scanned on 2025-01-27
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn MoreOther packages similar to geoip-country-lite
geoip-lite-country
Stripped down version of geoip-lite, supporting only country lookup.
geoip-country-lookup
Lite version of GeoIP MaxMind module.
geoip-lite-country-only
A light weight native JavaScript implementation of GeoIP API from MaxMind that includes only country data
geoip-native-lite
Super-fast IP to country lookups with minimal RAM usage.