Socket
Socket
Sign inDemoInstall

ip-location

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

ip-location

Get an IP or hostname location.


Version published
Maintainers
1
Weekly downloads
371
decreased by-37.54%
Install size
5.16 kB

Weekly downloads

Readme

Source

ip-location

Fetch the location of an IP address, host name, or your own location.

Uses freegeoip.net to query for information. freegeoip.net uses MaxMind Geolite 2.

Install

npm i --save ip-location

Usage

With Callbacks

var ipLocation = require('ip-location')

ipLocation('github.com', function (err, data) {
  console.log(data)
})

Outputs:

{ ip: '192.30.252.129',
  country_code: 'US',
  country_name: 'United States',
  region_code: 'CA',
  region_name: 'California',
  city: 'San Francisco',
  zip_code: '94107',
  time_zone: 'America/Los_Angeles',
  latitude: 37.7697,
  longitude: -122.3933,
  metro_code: 807 }

With Promises

var ipLocation = require('ip-location')

ipLocation('github.com')
.then(function (data) {
  console.dir(data)
})
.catch(function (err) {
  console.error(err)
})

Set Your Own Promise Implementation

You can set your own Promise library if you want to use Bluebird or are using Node v0.10.

var ipLocation = require('ip-location')

ipLocation.Promise = require('bluebird')

Use in Browser / or Use Own HTTP Library

If you want to use this in the browser, you must bring your own http GET library to the party. I'd recommend: xhr or fetch.

var ipLocation = require('ip-location')

ipLocation.httpGet = function (url, callback) {
  fetch(url).then(function (resp) {
    return resp.text() // don't use json()
  }).then(function (text) {
    resp.body = text // body should always be set to a string
    callback(null, resp)
  }).catch(function (err) {
    callback(err)
  })
}

Fetch Your Location

Just pass in an empty string.

ipLocation('', function (err, myLocation) {
  console.dir(myLocation)
})
  • ip-location-cli - Command line utility for this module.

License

MIT - Copyright (c) JP Richardson

Keywords

FAQs

Last updated on 15 Feb 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc