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

paw-info

v3.18.1

Published

Simple system and OS information library

Downloads

5

Readme

systeminformation

Simple system and OS information library for node.js

NPM Version NPM Downloads Git Issues deps status MIT license

Quick Start

Collection of 30+ functions to retrieve detailed hardware, system and OS information (Linux, OSX and now partial Windows support)

Installation

$ npm install systeminformation --save

Usage

All functions (except version and time) are implemented as asynchronous functions. Here a small example how to use them:

var si = require('systeminformation');

// callback style
si.cpu(function(data) {
	console.log('CPU-Information:');
	console.log(data);
})

// promises style - new in version 3
si.cpu()
	.then(data => console.log(data))
	.catch(error => console.error(error));

News and Changes

Latest Activity

  • Version 3.17.0: windows support for some very first functions (work in progress)
  • Version 3.16.0: blockDevices: added removable attribute
  • Version 3.15.0: added cpuTemperature also for OSX
  • Version 3.14.0: added currentLoad per cpu/core, cpu cache (L1, L2, L3) and cpu flags
  • Version 3.13.0: added shell (returns standard shell)
  • Version 3.12.0: refactoring and extended currentLoad (better OSX coverage and added irq load).
  • Version 3.11.0: blockDevices now also for OSX and also extended (+ label, model, serial, protocol).
  • Version 3.10.0: added blockDevices (list of disks, partitions, raids and roms).
  • Version 3.9.0: extended networkInterfaces (added MAC address).
  • Version 3.8.0: added dockerContainerProcesses (array of processes inside a docker container).
  • Version 3.7.0: extended dockerContainerStats.
  • Version 3.6.0: added versions (kernel, ssl, node, npm, pm2, ...).
  • Version 3.5.0: added graphics info (controller and display).
  • Version 3.4.0: rewritten currentLoad and CPU load for processes (linux). This is now much more accurate.
  • Version 3.3.0: added processes.list. Get full process list including details like cpu and mem usage, status, command, ...
  • Version 3.2.0: added battery support. If a battery is installed, you get information about status and current capacity level
  • Version 3.1.0: added Docker support. Now you can scan your docker containers and get their stats
  • Version 3.0.0: added disksIO - overall diskIO and IOPS values for all mounted volumes

Changelog

You can find all changes here: detailed changelog

Core concept

Node.js comes with some basic OS information, but I always wanted a little more. So I came up to write this little library. This library is still work in progress. Version 3 comes with further improvements. First it requires now node.js version 4.0 and above. Another big change is, that all functions now return promises. You can use them like before with callbacks OR with promises (see example in this documentation). I am sure, there is for sure room for improvement. I was only able to test it on several Debian, Raspbian, Ubuntu distributions as well as OS X (Mavericks, Yosemite, El Captain). Since version 2 nearly all functionality is available on OS X/Darwin platforms. Be careful, this library has only very limited Windows support!

If you have comments, suggestions & reports, please feel free to contact me!

I also created a little command line tool called mmon (micro-monitor), also available via github and npm

Reference

Sections

This library is splitted in several sections:

  1. General
  2. System (HW)
  3. Operating System
  4. CPU
  5. Memory
  6. File System
  7. Network
  8. Processes
  9. Users
  10. Internet
  11. Docker
  12. GetAll

Function Reference and OS Support

| Function | Linux | OSX | Win | Comments | | --------------- | ----- | ---- | ------- | -------- | | si.version() | X | X | X | library version (no callback/promise) | | si.time() | X | X | X | time information (no callback/promise) | | - current | X | X | X | local time | | - uptime | X | X | X | uptime | | si.system(cb) | X | X | X | hardware information | | - manufacturer | X | X | X | e.g. 'MSI' | | - model | X | X | X | model/product e.g. 'MS-7823' | | - version | X | X | X | version e.g. '1.0' | | - serial | X | X | X | serial number | | - uuid | X | X | X | UUID | | si.osInfo(cb) | X | X | X | OS information | | - platform | X | X | X | 'Linux', 'Darwin', 'Windows' | | - distro | X | X | X | | | - release | X | X | X | | | - codename | | X | | | | - kernel | X | X | X | kernel release - same as os.release() | | - arch | X | X | X | same as os.arch() | | - hostname | X | X | X | same as os.hostname() | | - logofile | X | X | X | e.g. 'apple', 'debian', 'fedora', ... | | si.versions(cb) | X | X | X | Version information (kernel, ssl, node, ...) | | si.shell(cb) | X | X | | standard shell | | si.cpu(cb) | X | X | X | CPU information| | - manufacturer | X | X | X | e.g. 'Intel(R)' | | - brand | X | X | X | e.g. 'Core(TM)2 Duo' | | - speed | X | X | X | in GHz e.g. '3.40' | | - cores | X | X | X | # cores | | si.cpuFlags(cb) | X | X | | CPU flags| | si.cpuCache(cb) | X | X | | CPU cache sizes | | - l1d | X | X | | L1D size | | - l1i | X | X | | L1I size | | - l2 | X | X | | L2 size | | - l3 | X | X | | L3 size | | si.cpuCurrentspeed(cb) | X | X | | current CPU speed (in GHz)| | - avg | X | X | | avg CPU speed (all cores) | | - min | X | X | | min CPU speed (all cores) | | - max | X | X | | max CPU speed (all cores) | | si.cpuTemperature(cb) | X | X | X | CPU temperature (if sensors is installed) | | - main | X | X | X | main temperature | | - cores | X | X | X | array of temperatures | | - max | X | X | X | max temperature | | si.mem(cb) | X | X | X | Memory information| | - total | X | X | X | total memory | | - free | X | X | X | not used | | - used | X | X | X | used (incl. buffers/cache) | | - active | X | X | X | used actively (excl. buffers/cache) | | - buffcache | X | X | | used by buffers+cache | | - available | X | X | X | potentially available (total - active) | | - swaptotal | X | X | | | | - swapused | X | X | | | | - swapfree | X | X | | | | si.battery(cb) | X | X | | battery information | | - hasbattery | X | X | | indicates presence of battery | | - ischarging | X | X | | indicates if battery is charging | | - maxcapacity | X | X | | max capacity of battery | | - currentcapacity | X | X | | current capacity of battery | | - percent | X | X | | charging level in percent | | si.graphics(cb) | X | X | | arrays of graphics controllers and displays | | - controllers[0].model | X | X | | graphics controller model | | - controllers[0].vendor | X | X | | e.g. ATI | | - controllers[0].bus | X | X | | on which bus (e.g. PCIe) | | - controllers[0].vram | X | X | | VRAM size (in MB) | | - controllers[0].vramDynamic | X | X | | true if dynamicly allocated ram | | - displays[0].model | X | X | | Monitor/Display Model | | - displays[0].main | X | X | | true if main monitor | | - displays[0].builtin | X | X | | true if built in monitor | | - displays[0].connection | X | X | | e.g. DisplayPort or HDMI | | - displays[0].resolutionx | X | X | | pixel horizontal | | - displays[0].resolutiony | X | X | | pixel vertical | | - displays[0].depth | X | X | | color depth in bits | | - displays[0].sizex | X | X | | size in mm horizontal | | - displays[0].sizey | X | X | | size in mm vertical | | si.fsSize(cb) | X | X | X | returns array of mounted file systems | | - [0].fs | X | X | X | name of file system | | - [0].type | X | X | X | type of file system | | - [0].size | X | X | X | sizes in Bytes | | - [0].used | X | X | X | used in Bytes | | - [0].use | X | X | X | used in % | | - [0].mount | X | X | X | mount point | | si.blockDevices(cb) | X | X | X | returns array of disks, partitions,raids and roms | | - [0].name | X | X | X | name | | - [0].type | X | X | X | type | | - [0].fstype | X | X | X | file system type (e.g. ext4) | | - [0].mount | X | X | X | mount point | | - [0].size | X | X | X | size in bytes | | - [0].physical | X | X | X | physical type (HDD, SSD, CD/DVD) | | - [0].uuid | X | X | X | UUID | | - [0].label | X | X | X | label | | - [0].model | X | X | | model | | - [0].serial | X | | X | serial | | - [0].removable | X | X | X | serial | | - [0].protocol | X | X | | protocol (SATA, PCI-Express, ...) | | si.fsStats(cb) | X | X | | current transfer stats | | - rx | X | X | | bytes read since startup | | - wx | X | X | | bytes written since startup | | - tx | X | X | | total bytes read + written since startup | | - rx_sec | X | X | | bytes read / second (* see notes) | | - wx_sec | X | X | | bytes written / second (* see notes) | | - tx_sec | X | X | | total bytes reads + written / second | | - ms | X | X | | interval length (for per second values) | | si.disksIO(cb) | X | X | | current transfer stats | | - rIO | X | X | | read IOs on all mounted drives | | - wIO | X | X | | write IOs on all mounted drives | | - tIO | X | X | | write IOs on all mounted drives | | - rIO_sec | X | X | | read IO per sec (* see notes) | | - wIO_sec | X | X | | write IO per sec (* see notes) | | - tIO_sec | X | X | | total IO per sec (* see notes) | | - ms | X | X | | interval length (for per second values) | | si.networkInterfaces(cb) | X | X | | array of network interfaces | | - [0].iface | X | X | | interface name | | - [0].ip4 | X | X | | ip4 address | | - [0].ip6 | X | X | | ip6 address | | - [0].mac | X | X | | MAC address | | - [0].internal | X | X | | true if internal interface | | si.networkInterfaceDefault(cb) | X | X | | get name of default network interface | | si.networkStats(iface,cb) | X | X | | current network stats of given interfaceiface parameter is optionaldefaults to first external network interface| | - iface | X | X | | interface | | - operstate | X | X | | up / down | | - rx | X | X | | received bytes overall | | - tx | X | X | | transferred bytes overall| | - rx_sec | X | X | | received bytes / second (* see notes) | | - tx_sec | X | X | | transferred bytes per second (* see notes) | | - ms | X | X | | interval length (for per second values) | | si.networkConnections(cb) | X | X | | current network network connectionsreturns an array of all connections| | - [0].protocol | X | X | | tcp or udp | | - [0].localaddress | X | X | | local address | | - [0].localport | X | X | | local port | | - [0].peeraddress | X | X | | peer address | | - [0].peerport | X | X | | peer port | | - [0].state | X | X | | like ESTABLISHED, TIME_WAIT, ... | | si.currentLoad(cb) | X | X | | CPU-Load | | - avgload | X | X | | average load | | - currentload | X | X | | CPU-Load in % | | - currentload_user | X | X | | CPU-Load User in % | | - currentload_nice | X | X | | CPU-Load Nice in % | | - currentload_system | X | X | | CPU-Load System in % | | - currentload_irq | X | X | | CPU-Load System in % | | - cpus[] | X | X | | current loads per CPU in % | | si.fullLoad(cb) | X | X | | CPU-full load since bootup in % | | si.services('mysql, apache2', cb) | X | X | | pass comma separated string of services | | - [0].name | X | X | | name of service | | - [0].running | X | X | | true / false | | - [0].pcpu | X | X | | process % CPU | | - [0].pmem | X | X | | process % MEM | | si.processes(cb) | X | X | | # running processes | | - all | X | X | | # of all processes | | - running | X | X | | # of all processes running | | - blocked | X | X | | # of all processes blocked | | - sleeping | X | X | | # of all processes sleeping | | - list[] | X | X | | list of all processes incl. details | | - ...[0].pid | X | X | | process PID | | - ...[0].pcpu | X | X | | process % CPU usage | | - ...[0].pcpuu | X | X | | process % CPU usage (user) | | - ...[0].pcpus | X | X | | process % CPU usage (system) | | - ...[0].pmem | X | X | | process memory % | | - ...[0].priority | X | X | | process priotity | | - ...[0].mem_vsz | X | X | | process virtual memory size | | - ...[0].mem_rss | X | X | | process mem resident set size | | - ...[0].nice | X | X | | process nice value | | - ...[0].started | X | X | | process start time | | - ...[0].state | X | X | | process state (e.g. sleeping) | | - ...[0].tty | X | X | | tty from which process was started | | si.processLoad('apache2',cb) | X | X | | detailed information about given process | | - proc | X | X | | process name | | - pid | X | X | | PID | | - cpu | X | X | | process % CPU | | - mem | X | X | | process % MEM | | si.users(cb) | X | X | | array of users online | | - [0].user | X | X | | user name | | - [0].tty | X | X | | terminal | | - [0].date | X | X | | login date | | - [0].time | X | X | | login time | | - [0].ip | X | X | | ip address (remote login) | | - [0].command | X | X | | last command or shell | | si.inetChecksite(url, cb) | X | X | | response-time (ms) to fetch given URL | | - url | X | X | | given url | | - ok | X | X | | status code OK (2xx, 3xx) | | - status | X | X | | status code | | - ms | X | X | | response time in ms | | si.inetLatency(host, cb) | X | X | | response-time (ms) to external resourcehost parameter is optional (default 8.8.8.8)| | si.dockerContainers(all, cb) | X | X | | returns array of active/all docker containers | | - [0].id | X | X | | ID of container | | - [0].name | X | X | | name of container | | - [0].image | X | X | | name of image | | - [0].imageID | X | X | | ID of image | | - [0].command | X | X | | command | | - [0].created | X | X | | creation time | | - [0].state | X | X | | created, running, exited | | - [0].ports | X | X | | array of ports | | - [0].mounts | X | X | | array of mounts | | si.dockerContainerStats(id, cb) | X | X | | statistics for a specific container | | - id | X | X | | Container ID | | - mem_usage | X | X | | memory usage in bytes | | - mem_limit | X | X | | memory limit (max mem) in bytes | | - mem_percent | X | X | | memory usage in percent | | - cpu_percent | X | X | | cpu usage in percent | | - pids | X | X | | number of processes | | - netIO.rx | X | X | | received bytes via network | | - netIO.wx | X | X | | sent bytes via network | | - blockIO.r | X | X | | bytes read from BlockIO | | - blockIO.w | X | X | | bytes written to BlockIO | | - cpu_stats | X | X | | detailed cpu stats | | - percpu_stats | X | X | | detailed per cpu stats | | - memory_stats | X | X | | detailed memory stats | | - networks | X | X | | detailed network stats per interface | | si.dockerContainerProcesses(id, cb) | X | X | | array of processes inside a container | | - [0].pid_host | X | X | | process ID (host) | | - [0].ppid | X | X | | parent process ID | | - [0].pgid | X | X | | process group ID | | - [0].user | X | X | | effective user name | | - [0].ruser | X | X | | real user name | | - [0].group | X | X | | effective group name | | - [0].rgroup | X | X | | real group name | | - [0].stat | X | X | | process state | | - [0].time | X | X | | accumulated CPU time | | - [0].elapsed | X | X | | elapsed running time | | - [0].nice | X | X | | nice value | | - [0].rss | X | X | | resident set size | | - [0].vsz | X | X | | virtual size in Kbytes | | - [0].command | X | X | | command and arguments | | si.dockerAll(cb) | X | X | | list of all containers including their statsand processes in one single array | | si.getStaticData(cb) | X | X | | all static data at once | | si.getDynamicData(srv,iface,cb) | X | X | | all dynamic data at once | | si.getAllData(srv,iface,cb) | X | X | | all data at once |

cb: Asynchronous Function Calls (callback)

Remember: all functions (except version and time) are implemented as asynchronous functions! There are now two ways to consume them:

Callback Style

var si = require('systeminformation');

si.networkStats('eth1', function(data) {
	console.log('Network Interface Stats (eth1):');
	console.log('- is up: ' + data.operstate);
	console.log('- RX bytes overall: ' + data.rx);
	console.log('- TX bytes overall: ' + data.tx);
	console.log('- RX bytes/sec: ' + data.rx_sec);
	console.log('- TX bytes/sec: ' + data.tx_sec);
})

Promises

Promises Style is new in version 3.0.

When omitting callback parameter (cb), then you can use all function in a promise oriented way. All functions (exept of version and time) are returning a promis, that you can consume:

si.networkStats('eth1')
	.then(data => {
		console.log('Network Interface Stats (eth1):');
		console.log('- is up: ' + data.operstate);
		console.log('- RX bytes overall: ' + data.rx);
		console.log('- TX bytes overall: ' + data.tx);
		console.log('- RX bytes/sec: ' + data.rx_sec);
		console.log('- TX bytes/sec: ' + data.tx_sec);
	})
	.catch(error => console.error(error));

*: Additional Notes

In fsStats, disksIO and networkStats the results per second values (rx_sec, IOPS, ...) are calculated beginning with the second call of the function. It is determined by calculating the difference of transferred bytes / IOs divided by the time between two calls of the function.

Known Issues

I am happy to discuss any comments and suggestions. Please feel free to contact me if you see any possibility of improvement!

Comments

If you have ideas or comments, please do not hesitate to contact me.

Happy monitoring!

Sincerely,

Sebastian Hildebrandt, +innovations

Credits

Written by Sebastian Hildebrandt sebhildebrandt

Contributers

OSX Temperature: Credits here are going to:

Copyright Information

Linux is a registered trademark of Linus Torvalds, OS X is a registered trademark of Apple Inc., Windows is a registered trademark of Microsoft Corporation. Node.js is a trademark of Joyent Inc., Intel is a trademark of Intel Corporation, Raspberry Pi is a trademark of the Raspberry Pi Foundation, Debian is a trademark of the Debian Project, Ubuntu is a trademark of Canonical Ltd., Docker is a trademark of Docker, Inc. All other trademarks are the property of their respective owners.

License MIT license

The MIT License (MIT)

Copyright © 2014-2017 Sebastian Hildebrandt, +innovations.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Further details see LICENSE file.