Join our webinar on Wednesday, June 26, at 1pm EDTHow Chia Mitigates Risk in the Crypto Industry.Register
Socket
Socket
Sign inDemoInstall

external-ip

Package Overview
Dependencies
49
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    external-ip

A node.js library to get your external ip from multiple services


Version published
Weekly downloads
2.5K
decreased by-1.29%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

#external-ip Build Status Dependency Status

XKCD 865

external-ip is a node.js library to get your external ip from multiple services.

##Installation

npm install external-ip

##Usage

basic

'use strict';

var getIP = require('external-ip')();

getIP(function (err, ip) {
    if (err) {
        // every service in the list has failed
        throw err;
    }
    console.log(ip);
});

with configuration

'use strict';

var extIP = require('external-ip');

var getIP = extIP({
    replace: true,
    services: ['http://ifconfig.co/x-real-ip', 'http://ifconfig.io/ip'],
    timeout: 600,
    getIP: 'parallel'
});

getIP(function (err, ip) {
    if (err) {
        throw err;
    }
    console.log(ip);
});

##extIP([config]) external-ip exposes a constructor function that accepts a configuration object with the following optional properties:

  • services: Array of urls that return the ip in the html body, required if replace is set to true
  • replace: Boolean if true, replaces the internal array of services with the user defined, if false, extends it, default: false
  • timeout: Timeout per request in ms, default 1000
  • getIP: 'sequential' Sends a request to the first url in the list, if that fails sends to the next and so on. 'parallel' Sends requests to all the sites in the list, on the first valid response all the pending requests are canceled. default: 'sequential'

Returns the configured getIP function.

##getIP(callback) The callback gets 2 arguments:

  1. error: if every service in the list fails to return a valid ip
  2. ip: your external ip

##CLI install as a global package with npm install -g external-ip.

$ external-ip -h

  Usage: external-ip [options]

  Options:

    -h, --help            output usage information
    -R, --replace         replace internal services instead of extending them.
    -s, --services <url>  service url, see examples, required if using -R 
    -t, --timeout <msec>  set timeout per request
    -P, --parallel        set to parallel mode

This program prints the external IP of the machine.
All arguments are optional.
Examples:
$ external-ip
$ external-ip -P -t 1500 -R -s http://icanhazip.com/ -s http://ifconfig.io/ip

##Test Change your working directory to the project's root, npm install to get the development dependencies and then run npm test

##Links

Keywords

FAQs

Last updated on 18 Jun 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