Gathering detailed insights and metrics for micro-geoip-lite
Gathering detailed insights and metrics for micro-geoip-lite
Gathering detailed insights and metrics for micro-geoip-lite
Gathering detailed insights and metrics for micro-geoip-lite
🌍 An extremely lite geoip decoder utilizing the micro-geoip-lite microservice to geo decode the IP info via an https request - the microservice utilizes MaxMind's IP info dataset.
npm install micro-geoip-lite
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
11 Stars
34 Commits
2 Watchers
3 Branches
1 Contributors
Updated on Jun 08, 2025
Latest Version
1.0.1
Package Id
micro-geoip-lite@1.0.1
Unpacked Size
9.61 kB
Size
3.87 kB
File Count
6
NPM Version
6.14.16
Node Version
12.22.12
Published on
May 28, 2025
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
2
22
🌍 An extremely lite geoip decoder utilizing the micro-geoip-lite microservice to geo decode the IP info via an https request - the microservice utilizes MaxMind's IP info dataset.
yarn add micro-geoip-lite
, npm i micro-geoip-lite
params:
1{ 2 serviceUrl?: string, // called instead of the default provider URL. You can also provide this via an env var `REACT_APP_SERVICE_URL_GEOIP` or `SERVICE_URL_GEOIP` 3 timeout?: string, // timeout in ms 4}
returns:
1{ 2 ip: string, // if ip param was not provided, this defaults to request.ip 3 range: [ number, number ], 4 country: string, 5 region: string, 6 eu: string, // '0' or '1' 7 timezone: string, 8 city: string, 9 ll: [ number, number ], 10 metro: number, 11 area: number, 12 // error: 'Error text', // only exists if an error happened 13}
example - fetch own ip info:
1import geodecodeIp from 'micro-geoip-lite'; 2 3const result = await geodecodeIp(); 4 5{ 6 ip: '207.97.227.239', // if ip param was not provided, this defaults to request.ip 7 range: [ 3479298048, 3479300095 ], 8 country: 'US', 9 region: 'TX', 10 eu: '0', 11 timezone: 'America/Chicago', 12 city: 'San Antonio', 13 ll: [ 29.4969, -98.4032 ], 14 metro: 641, 15 area: 1000, 16 // error: 'Error text', // only exists if an error happened 17}
example - fetch specific ip info:
1import geodecodeIp from 'micro-geoip-lite'; 2 3const result = await geodecodeIp('207.97.227.239');
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
2 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 1
Reason
Found 0/16 approved changesets -- 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
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
29 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
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