1.0.0 • Published 4 years ago

tiny-ip2geolocation v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

Features

A natvie NodeJS API.

  • Tiny
  • Fast Lookup

Usage

// Async
ip2geo(numericIP("167.172.214.200")).then((val) => {
    console.log(val);
});

// await
const val = await ip2geo(numericIP("167.172.214.200"));

// Output: { ctry: 'US', cntry: 'USA', country: 'United States' }
1.0.0

4 years ago