npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ip-city

v5.0.202409172258

Published

Quick geolocation lookup from IP address

Downloads

1,008

Readme

[!CAUTION] This repository would not maintaine any more. We recommend to use new library ip-location-api which has faster and customizable system, we created from scratch.

ip-city NPM version

A native nodejs API to get geolocation information from ip address.

This library is fork of the geoip-lite which provides a very fast ip to geolocation API by loading the ip to geolocation database into memory. However, because the database contains city and coordinate information, etc., its size exceeds 120 MB, which means that it uses a lot of memory and takes a long time before the first execution.

ip-city reduces memory usage and faster startup and faster lookup by database customization. Futhermore, we add the other information capital, continent_name, languages, etc., from v5. You can check the test/benchmark.js after updating geoip-lite database.

| benchmark (node v20) | database size | startup time | lookup time | | ---- | ---- | ---- | ---- | | ip-city(remove all custom fields) | 37 MB | 40 ms | 0.00151 ms/ip | | ip-city(default) | 72 MB | 52 ms | 0.00158 ms/ip | | geoip-lite | 124MB | 52 ms | 0.00237 ms/ip |

This product includes GeoLite2 ipv4 and ipv6 city data created by MaxMind. The database of this product updates twice a weekly.

You should read this README and the LICENSE and EULA files carefully before deciding to use this product. After v4, LICENSE for the GeoLite2 database was changed. If you need to use this product with previous LICENSE, please use v3.

Synopsis

var geoip = require('ip-city');

var ip = "207.97.227.239";
var geo = geoip.lookup(ip);

console.log(geo);
{
  country: 'FR',
  region1: 'NOR',
  state1: 'Normandy',
  region2: '27', 
  state2: 'Eure',
  city: 'Heudicourt',
  timezone: 'Europe/Paris',
  latitude: 49.3335, // custom field
  longitude: 1.6566, // custom field
  area: 5,           // custom field
  postcode: 27860,   // custom field
  name: 'France',
  native: 'France',
  phone: [ 33 ],
  continent: 'EU',
  capital: 'Paris',
  currency: [ 'EUR' ],
  languages: [ 'fr' ],
  continent_name: 'Europe'
}

Installation

$ npm i ip-city

API

ip-city 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 50ms 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.

var geo = geoip.lookup(ip);

If the IP address was not found, the lookup returns null.

We use two databases for getting ip address to geo data. First is GeoLite2 country database for linking ip address to geo-location. Second database is Countries database which is published under MIT License for linking country to languages, capital, continent, etc.

Field description

Note that as far as possible, the same field names as in geoip-lite are used, but some different field names are used.

| geoip-coutry | geoip-lite | description | | ---- | ---- | ---- | | country | country | "2 letter" country code defined at ISO-3166-1 alpha-2 | | region1 | region | region code which is short code for state1 | | state1 | ❌️ | first sub divition name | | region2 | ❌️ | region code which is short code for state2 | | state2 | ❌️ | second sub divition name | | metro | metro | Geolocation target code from Google | | city | city | city name | | timezone | timezone | The time zone associated with location | | latitude[custom field] | ll[0] | geographic coordinate | | longitude[custom field] | ll[1] | geographic coordinate | | area[custom field] | area | The radius in kilometers around the specified location where the IP address is likely to be | | postcode[custom field] | ❌️ | postcode | | name | ❌️ | country name from Countries | | native | ❌️ | country name in native language from Countries | | phone | ❌️ | country calling codes from Countries | | continent | ❌️ | continent short code from Countries | | continent_name | ❌️ | continent name from Countries | | capital | ❌️ | capital name from Countries | | currency | ❌️ | List of commonly used currencies from Countries | | languages | ❌️ | List of commonly used languages from Countries |

Built-in Updater

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.

npm run updatedb --license_key=YOUR_GEOLITE2_LICENSE_KEY
	or
GEOLITE2_LICENSE_KEY=YOUR_GEOLITE2_LICENSE_KEY node scripts/updatedb.js

YOUR_GEOLITE2_LICENSE_KEY should be replaced by a valid GeoLite2 license key. Please follow instructions provided by MaxMind to obtain a license key.

Update database API [Added at v4.1.0]

You can update city database with updateDatabase method.

  geoip.updateDatabase(license_key, callback);

license_key is a license key which provided by MaxMind. You can get GeoLite2 license key as instructions.

By setting the environmental variable GEOLITE2_LICENSE_KEY, you can update with

  geoip.updateDatabase(callback);

Customize database fields

You can remove unused fields latitude, longitude, area, postcode with the environmental variable GEO_UNUSED_FIELDS=latitude,longitude,area,postcode or CLI parameter --geoip_unused_fields=latitude,longitude,area,postcode. It makes less memory usage and faster startup. Note that when using geoip.lookup() and updating the database, the fields must always be the same.

Change language of fields city, state1, state2

You can change the language of some fields by setting CLI parameter --geoip_language=ja or environment GEOIP_LANGUAGE=ja when updating the database. Supported languages are de, en, es, fr, ja, pt-BR, ru, zh-CN. (default is en)

GeoIP2 database

You can use GeoIP2 paid database which has more accurate version of GeoLite2. Please set CLI parameter --geoip_series=GeoIP2 or environment GEOIP_SERIES=GeoIP2 when updating the database.

Custom Directory for database files

You can store the database files in custom directory with the environment variable GEOIP_DATADIR or CLI parameter --geoip_datadir=XXXXX. For creating or updating the database files in custom directory, you need to run built-in updater as documented above with setting the environment variable GEOIP_DATADIR or CLI parameter --geoip_datadir=XXXXX. If you have no write-access to the ip-city directory, it would be better to set the environment GEOIP_TMPDATADIR or CLI parameter --geoip_tmpdatadir=YYYYY for temporary directory when updating the database files.

License and EULA

Please carefully read the LICENSE and EULA files. This package comes with certain restrictions and obligations, most notably:

  • You cannot prevent the library from updating the databases.
  • You cannot use the GeoLite2 data:
    • for FCRA purposes,
    • to identify specific households or individuals.

You can read the latest version of GeoLite2 EULA. GeoLite2 database is provided under CC BY-SA 4.0 by MaxMind, so, you must create attribusion to MaxMind for using GeoLite2 database.

The license for the software itself is an Apache License 2.0 by ip-city. This software is created from the repository geoip-lite/node-geoip. The software license of geoip-lite/node-geoip is Apache License 2.0.

References

  • GeoLite2 EULA
  • Documentation from MaxMind
  • ISO 3166 (1 & 2) codes
  • FIPS region codes
  • annexare/Countries