项目原始demo,不改动
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
xzx 2ec7739298 [Version] V.3.8 4 years ago
..
cli.js [Version] V.3.8 4 years ago
index.js [Version] V.3.8 4 years ago
license [Version] V.3.8 4 years ago
package.json [Version] V.3.8 4 years ago
readme.md [Version] V.3.8 4 years ago

readme.md

internal-ip Build Status

Get your internal IPv4 or IPv6 address

CLI

$ npm install --global internal-ip
$ internal-ip --help

  Usage
    $ internal-ip

  Options
    -4, --ipv4  Return the IPv4 address (default)
    -6, --ipv6  Return the IPv6 address

  Example
    $ internal-ip
    192.168.0.123
    $ internal-ip -6
    fe80::200:f8ff:fe21:67cf

API

$ npm install --save internal-ip
var internalIp = require('internal-ip');

internalIp.v4();
//=> '192.168.0.123'

internalIp.v6();
//=> 'fe80::200:f8ff:fe21:67cf'

See public-ip or ipify to get your external IP address.

License

MIT © Sindre Sorhus