Gathering detailed insights and metrics for ip3country
Gathering detailed insights and metrics for ip3country
Gathering detailed insights and metrics for ip3country
Gathering detailed insights and metrics for ip3country
A JavaScript, zero-dependency, super small version of IP2Location LITE country lookups.
npm install ip3country
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
40 Stars
46 Commits
6 Watching
15 Branches
6 Contributors
Updated on 05 Oct 2024
Minified
Minified + Gzipped
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-26.8%
33,116
Compared to previous day
Last week
-5.2%
212,567
Compared to previous week
Last month
12%
925,904
Compared to previous month
Last year
83.9%
8,976,001
Compared to previous year
No dependencies detected.
This is a zero-dependency, super small, IP address to 2-letter country code lookup library. There are already several libraries available, but none met our requirements for binary size and speed.
This project in its entirety is <300KB, compared to most alternatives out there that are north of 40MB (but might provide more than just countries).
(Other languages: Python: https://github.com/statsig-io/ip3country-py, Go: https://github.com/statsig-io/ip3country-go, Ruby: https://github.com/statsig-io/ip3country-ruby, Kotlin: https://github.com/statsig-io/ip3country-kotlin, C#/.Net: https://github.com/statsig-io/ip3country-dotnet)
The database used in this project is compacted from IP2Location. Their DB1.LITE edition is provided under CCA, with the attribution below:
NOTE
This site or product includes IP2Location LITE data available from https://lite.ip2location.com.
1$ npm install ip3country
1// Setup 2const ip3country = require("ip3country"); 3 4ip3country.init(); 5 6// Lookup using ip4 str 7ip3country.lookupStr("123.45.67.8"); // 'KR'. 8 9// Lookup using numeric ip 10console.log(ip3country.lookupNumeric(2066563848));
ip3country
's accuracy is dependent on IP2Location LITE's accuracy. In our experience, for country lookups, it is accurate enough for most applications.
IP2Location publishes accuracy reports here: https://www.ip2location.com/data-accuracy
There's also this third party report available: https://www.cl.cam.ac.uk/~nz247/publications/JSAC2011-Geolocation.pdf
To make this library easy to consume, we're using btoj to transform the necessary binary data into a js module that can be imported like any other module. You won't need to list ip3country
as an external in your build process.
We're currently using brotli compression via NodeJS's zlib
library, which won't work in Browser environments. If you want ip3country
on a browser, check version 3.0.0
(and feel free to publish ip3country-browser
).
All variants of "ip2country" were already taken in npm, so we decided to step it up.
At Statsig, we needed a library to evaluate location-based conditions on Feature Gates (Feature Flags). We use ip3country to power country-level rollouts or A/B tests for new features.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 22/29 approved changesets -- score normalized to 7
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-18
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 More