New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

my-local-ip-is

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

my-local-ip-is

finds your internal ip to acces your pc over the LAN

  • 1.0.7
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

My Local IP Is

Build Status Written In Javascript npm downloads npm version Licenced under ISC Try my-local-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-local-ip-is

and you will get a result like

WiFi: 192.168.0.134

that you can then use to access yourr device over the LAN.

Node Module

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

const myLocalIpIs = require("my-local-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 myLocalIpIs = require("my-local-ip-is")
console.log(myLocalIpIs());

Try code on RunKit

returns something like this in the console:

[ { "name": "WiFi", "ip": "192.168.0.134" },
  { "name": "VirtualBox Host-Only Network", "ip": "192.168.56.1" } ]

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

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

Try code on RunKit

that will then return a IP like 192.168.56.1.


Twitter


made with ❤️ from DerpMarine

Keywords

FAQs

Package last updated on 28 Sep 2018

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc