my-loopback-ip-is

1.0.0 • Public • Published

My Local IP Is

Build Status Written In Javascript npm downloads npm version Licenced under ISC Try my-loopback-ip-is on RunKit

My Local IP Is is a package to find your local IP adress, for access over the LAN.

Usage

It can be used as a CLI or as a Node Module. here are some usage examples:

Terminal

In the terminal you can just run

my-loopback-ip-is

and you will get a result like

Loopback Pseudo-Interface 1: 127.0.0.1

Node Module

As a node module it's pretty simple. First, you must import it.

const myLoopbackIpIs = require("my-loopback-ip-is")

Then, you can call it at will. it will return a array of objects, with the properties name (the name of the IP interface) and ip (the IP adress). for example,

const myLoopbackIpIs = require("my-loopback-ip-is")
console.log(myLoopbackIpIs());

returns something like this in the console:

[ { "name": "Loopback Pseudo-Interface 1", "ip": "127.0.0.1" } ]

In most cases, you will simply want the first IP adress. this can be acheved with the following code:

const myLoopbackIpIs = require("my-loopback-ip-is")
let ip = myLoopbackIpIs()[0]["ip"]
console.log(ip)

that will then return a IP like 127.0.0.1.


Twitter


made with ❤️ from DerpMarine

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    1
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    1

Package Sidebar

Install

npm i my-loopback-ip-is

Weekly Downloads

1

Version

1.0.0

License

BSD-3-Clause

Unpacked Size

5.79 kB

Total Files

3

Last publish

Collaborators

  • derpmarine