0.1.2 • Published 7 years ago

longitude v0.1.2

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

longitude Build Status

Geolocation for node

Install

$ npm install --save longitude

Usage

With any IP

const longitude = require('longitude');

longitude('8.8.8.8').then(data => {
  console.log(data);
  // => {
  // =>   ip: '8.8.8.8',
  // =>   country_code: 'US',
  // =>   country_name: 'United States',
  // =>   latitude: 37.751,
  // =>   longitude: -97.822,
  // =>   ...
  // => }
});

With device IP

const longitude = require('longitude');

longitude().then(data => {
  console.log(data);
  // => {
  // =>   ip: Your IP,
  // =>   ...
  // => }
});

API

longitude(ip)

Returns a promise with the geoip data

ip

Type: string

The IP - Address you want to check

Related

License

MIT © Tobias Herber