npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-network-manager

v1.0.14

Published

Network Manager for Nodejs

Downloads

261

Readme

node-network-manager

npm version

Descreption

Network Setting and Get Network Info (IP, Lan, Wifi and ...)

Notes

- This package works only `linux` based systems
+ linux on PC, Raspberry-pi, Orange-pi and ...
- This package required to `nmcli` (`network-manager`)

Installation

npm

npm install node-network-manager --save

Usage

app.js

const network = require("node-network-manager");

network
  .getConnectionProfilesList()
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Examples

Enable network

network
  .enable()
  .then(() => console.log("network has just turned on"))
  .catch((error) => console.log(error));

Disable network

network
  .disable()
  .then(() => console.log("network has just turned off"))
  .catch((error) => console.log(error));

Get network connectivity state (params: reChecking = true|false)

network
  .getNetworkConnectivityState(true)
  .then((hostName) => console.log(hostName))
  .catch((error) => console.log(error));

Get Device Status

network
  .deviceStatus()
  .then((result) => console.log(result))
  .catch((error) => console.log(error));

Connect Device (params: device (can get with deviceStatus))

network
  .deviceStatus("enp4s0")
  .then((result) => console.log(result))
  .catch((error) => console.log(error));

Disconnect Device (params: device (can get with deviceStatus))

network
  .deviceStatus("enp4s0")
  .then((result) => console.log(result))
  .catch((error) => console.log(error));

Enable Wifi

network
  .wifiEnable()
  .then(() => console.log("wifi was enabled"))
  .catch((error) => console.log(error));

Disable Wifi

network
  .wifiDisable()
  .then(() => console.log("wifi was disabled"))
  .catch((error) => console.log(error));

Get Wifi status

network
  .getWifiStatus()
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Wifi Hotspot (params: ifname (interface name like: wlo1, enp4s0) , ssid , password)

network
  .wifiHotspot("wlo1", "ssid1988", "1234567890")
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Get Wifi credentials (params: ifname (interface name like: wlo1, enp4s0))

network
  .wifiCredentials("wlo1")
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Observe NetworkManager activity. Watches for changes in connectivity state, devices or connection profiles. (params: stream = stream)

const fs = require("fs");
const path = require("path");
const myFile = fs.createWriteStream(path.join(__dirname, "myOutput.txt"));
network
  .activityMonitor(process.stdout)
  .then((endStream) => {
    console.log("start monitor");
    setTimeout(() => {
      console.log("stop monitor");
      endStream();
    }, 5000);
  })
  .catch((error) => console.log(error));
network
  .activityMonitor(myFile)
  .then((endStream) => {
    console.log("start monitor");
    setTimeout(() => {
      console.log("stop monitor");
      endStream();
    }, 5000);
  })
  .catch((error) => console.log(error));

List in-memory and on-disk connection profiles (params: active = true|false)

network
  .getConnectionProfilesList()
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Activate a connection (params: uuid (can get with getConnectionProfilesList))

network
  .connectionUp("79373ad4-c462-43f7-90bd-ffdd4036623f")
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Deactivate a connection from a device without preventing the device from further auto-activation. (params: uuid (can get with getConnectionProfilesList))

network
  .connectionDown("79373ad4-c462-43f7-90bd-ffdd4036623f")
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

List available Wi-Fi access points. (params: reScan = true|false)

network
  .getWifiList(true)
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Connect to a Wi-Fi network specified by SSID (params: SSID = String , Password = String)

network
  .wifiConnect("Your-Access-Point-SSId", "AP-Password")
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Support for hidden WiFi (v1.0.11)

network
  .wifiConnect("Your-Access-Point-SSId", "AP-Password", true)
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Get all IPv4 interfaces

network
  .getIPv4()
  .then((ipData) => console.log(ipData))
  .catch((error) => console.log(error));

Get system hostname

network
  .getHostName()
  .then((hostName) => console.log(hostName))
  .catch((error) => console.log(error));

Set system hostname

network
  .setHostName(hostName)
  .then((hostName) => console.log(result))
  .catch((error) => console.log(error));

Get ethernet and wifi ip details (v1.0.5)

network
  .getConnectionProfilesList(false)
  .then((data) => {
    const ethernet = data.find((item) => item.TYPE === "ethernet");
    const wifi = data.find((item) => item.TYPE === "wifi");
    network
      .getDeviceInfoIPDetail(ethernet.DEVICE)
      .then((data) => console.log(data))
      .catch((error) => console.log(error));
    network
      .getDeviceInfoIPDetail(wifi.DEVICE)
      .then((data) => console.log(data))
      .catch((error) => console.log(error));
  })
  .catch((error) => console.log(error));

Get all device ip details

network
  .getAllDeviceInfoIPDetail()
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Delete a connection (v1.0.11)

network
  .connectionDelete("b23522e9-c50e-43c2-bdca-ec0a5735b2ec")
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Add gsm connection (v1.0.11)

network
  .addGsmConnection(
    "gsm_test_delete_me",
    "*",
    "apn",
    "username",
    "password",
    "1234"
  )
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Add ethernet connection - static IP (v1.0.13) (new)

network
  .addEthernetConnection(
    "test_connection_1",
    "enp0s3",
    "192.168.1.161",
    "192.168.1.1"
  )
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

Change DNS (v1.0.13) (new)

network
  .changeDnsConnection("test_connection_1", "8.8.8.8 8.8.4.4")
  .then((data) => console.log(data))
  .catch((error) => console.log(error));

License

This project is licensed under the MIT License

Change log

1.0.13 (2024-03-17)

  • Fixed a typo

1.0.13 (2024-03-17)

  • Resolved issue #6
  • Added supporting to add ethernet connection with static IP (addEthernetConnection)
  • Added changeDnsConnection function
  • Fixed addGsmConnection parametes

1.0.12 (2024-01-19)

  • Fixed issue #4

1.0.11 (2024-01-19)

  • Added support for hidden WiFi
  • Added Connection Delete function (connectionDelete)
  • Added addGsmConnection function

1.0.10 (2022-11-20)

  • Add getAllDeviceInfoIPDetail function

1.0.9 (2022-02-22)

  • Code refactoring, and additional functions: setHostName, deviceStatus, deviceConnect, deviceDisconnect, wifiHotspot, wifiCredentials

1.0.7 1.0.8 (2022-01-15)

  • Fix getDeviceInfoIPDetail function

1.0.6 (2021-10-13)

  • Fix SSID with spaces

1.0.5 (2021-10-03)

  • added getDeviceInfoIPDetail function

1.0.4 (2021-10-03)

  • added inUseBoolean field in 'getWifiList' result

1.0.3 (2021-09-26)

  • Fixed Examples in README file

1.0.2 (2021-09-26)

  • Fixed README file

1.0.1 (2021-09-26)

  • Fixed README file

1.0.0 (2021-09-26)

  • Release first version