geoip-web-api
v4.0.1
Published
An AMP-GEO compatible location web API
Readme
geoip-web-api
A web API for IP-based geolocation. Both IPv4 and IPv6 are supported. Suitable for use as an amp-geo fallback when self-hosting the AMP framework.
GeoIP database and reader
Option 1: MaxMind
Setup MaxMind's GeoIP Update program to fetch and maintain a GeoIP database. Select a free or paid database in MaxMind DB file format. A sample cron job to let geoipupdate check for database updates each day at midnight looks like:
0 0 * * * geoipupdate -f /path/to/GeoIP.confThis module uses node-maxmind for the database reader. When the database is updated on the filesystem, the reader should automatically reload without needing to restart this module.
Option 2: IP2Location
Setup IP2Location's Download Client script to fetch and maintain a GeoIP database. Select a free or paid database in BIN file format.
Optionally, if you need subdivision support, also download the ISO 3166-2 Subdivision Code database in CSV file format.
This module uses ip2ldb-reader for the database reader. When the database is updated on the filesystem, the reader should automatically reload without needing to restart this module.
Requirements
- Minimum supported Node.js version: 20.19.0
Installation
This module has been tested with Node.js LTS 20 and 22. Feel free to test newer versions of Node.js and let me know if you encounter compatibility issues.
Local installation
npm install geoip-web-apiGlobal installation
npm install -g geoip-web-apiOptions
All properties are optional, provided the defaults are suitable.
{
// {number} Log level (0:Off, 1:Error, 2:Warn, 3:Info, 4:Debug)
"logLevel": 3,
// {number} Port where HTTP server should listen
"port": 3000,
// {Object.<string, boolean>} Enabled output values (see HTTP response section)
"enabledOutputs": {
"country": true,
"subdivision": true,
"ip": false,
"ip_version": false,
"data": false
},
// {boolean} Pretty JSON output
"prettyOutput": false,
// {Object.<string, string|null>} Dictionary of HTTP response headers for GET requests
"getHeaders": {},
// {Array<string>} Array of GET paths to which HTTP server should respond
"getPaths": ['/', '/*'],
// {Object} Allowed cross-origin requests (CORS)
"cors": {
// {Array<string>} Array of allowed CORS origins (exact match)
"origins": null,
// {RegEx|string} RegEx test for allowed CORS origins
"originRegEx": null
},
// {Object.<string, string>} MaxMind database and reader options
"maxmind": {
// {string} Filesystem path to MaxMind database (in MMDB format)
"dbPath": "./GeoLite2-Country.mmdb"
},
// {Object.<string, string>} IP2Location database and reader options
"ip2location": {
// {string} Filesystem path to IP2Location database (in BIN format)
"dbPath": "",
// {string} Filesystem path to IP2Location ISO 3166-2 Subdivision Code database (in CSV format)
"subdivisionCsvPath": ""
}
}Additional information
enabledOutputs- If an output is enabled but is not supported by the database, it will not be output in the final response.getHeaders- Headers can be removed from the response by setting their values tonull. TheContent-TypeandContent-Lengthheaders are generated automatically and cannot be removed; it is possible to change theContent-Typeheader to another valid MIME type, but it is not possible to alterContent-Length. TheETagheader additionally supports special values"strong"and"weak"to specify strong or weak ETag generation, respectively (weak by default).getPaths- See Express Route paths documentation for allowed route patterns. Notice that the default configuration matches requests to any path.cors.originsandcors.originRegEx- If the incoming request has anOriginHTTP header that satisfies one of these tests (is incors.originsarray or satisfiescors.originRegExRegEx test), then anAccess-Control-Allow-Originheader will be appended to the response with value equal to theOriginheader. Note that ifcors.originRegExis available as a string, theRegExpobject will be built withnew RegExp(cors.originRegEx, 'i').maxmindandip2location- Only one of these properties should be provided. If both have validdbPathproperties, then MaxMind takes precedence.
When running this module as a command line application, these options should be saved in a JSON configuration file whose path is passed to the application with argument --config. When using this module in your own Node.js application, these options should be passed to the GeoIpWebApi constructor. See Usage section below.
Example options
{
"logLevel": 1,
"port": 8080,
"enabledOutputs": {
"ip": true,
"data": true
},
"getHeaders": {
"cache-control": "private, max-age=3600",
"X-Content-Type-Options": "nosniff"
},
"getPaths": ["/geoip"],
"cors": {
"origins": ["http://example.com", "http://example.net"],
"originRegEx": "^https://[a-z0-9\\-]+\\.example\\.(com|net)$"
},
"maxmind": {
"dbPath": "/path/to/GeoLite2-City.mmdb"
}
}Usage
Command line interface
If installed globally:
geoip-web-api --config="/path/to/config.json"If installed locally:
npx geoip-web-api --config="/path/to/config.json"Node.js module
import GeoIpWebApi from 'geoip-web-api';
const options = {...};
const geoIpWebApi = new GeoIpWebApi(options);
// Start HTTP server
await geoIpWebApi.start();
// Stop HTTP server
await geoIpWebApi.stop();
// Check whether HTTP server is running
let isRunning = geoIpWebApi.isRunning();HTTP response
The response body is application/json and contains the following data:
{
"country": {string}, // ISO 3166-1 alpha-2 country code
"subdivision": {string}, // Subdivision part of ISO 3166-2 country-subdivision code
"ip": {string}, // Request IP
"ip_version": {number} // Request IP version (4 or 6, or 0 if IP is not valid)
"data": {object} // Complete database result
}The schema for data depends on the database used.
Response conforms to AMP-GEO fallback API schema 0.2
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"country": {
"type": "string",
"title": "ISO 3166-1 alpha-2 (case insensitive) country code of client request",
"default": "",
"pattern": "^[a-zA-Z]{2}$"
},
"subdivision": {
"type": "string",
"title": "Subdivision part of ISO 3166-2 (case insensitive) country-subdivision code of client request",
"default": "",
"pattern": "^[a-zA-Z0-9]{1,3}$"
}
},
"required": ["country"]
}Sample response
{
"country": "US",
"subdivision": "CA"
}Reverse proxy
The HTTP server (Express) in this module is designed to run behind a reverse proxy. It has been configured to trust the leftmost IP in the X-Forwarded-For request header (see documentation for trust proxy = true).
Sample Nginx location block
Listen for requests to /geoip/ and forward to localhost port 8080:
location ~ ^/geoip/ {
proxy_set_header X-Forwarded-For $remote_addr;
proxy_pass http://127.0.0.1:8080;
proxy_redirect off;
}License
MIT
