systeminformation 5.9.9 → 5.9.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/lib/battery.js +1 -1
- package/lib/cpu.js +20 -10
- package/lib/filesystem.js +53 -49
- package/lib/graphics.js +2 -2
- package/lib/index.d.ts +29 -17
- package/lib/memory.js +2 -2
- package/lib/network.js +1674 -1589
- package/lib/osinfo.js +1148 -1151
- package/lib/system.js +841 -839
- package/lib/users.js +36 -29
- package/lib/util.js +2 -1
- package/package.json +2 -2
- package/CHANGELOG.md +0 -682
package/CHANGELOG.md
DELETED
|
@@ -1,682 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## Major Changes - Version 5
|
|
4
|
-
|
|
5
|
-
#### New Functions
|
|
6
|
-
|
|
7
|
-
- `audio()` detailed audio information
|
|
8
|
-
- `bluetoothDevices()` detailed information detected bluetooth devices
|
|
9
|
-
- `dockerImages()` detailed information docker images
|
|
10
|
-
- `dockerVolumes()` detailed information docker volumes
|
|
11
|
-
- `printers()` detailed printer information
|
|
12
|
-
- `usb()` detailed USB information
|
|
13
|
-
- `wifiInterfaces()` detected Wi-Fi interfaces
|
|
14
|
-
- `wifiConnections()` active Wi-Fi connections
|
|
15
|
-
|
|
16
|
-
#### Breaking Changes
|
|
17
|
-
|
|
18
|
-
**Be aware**, that the new version 5.x **is NOT fully backward compatible** to version 4.x ...
|
|
19
|
-
|
|
20
|
-
We had to make **several interface changes** to keep systeminformation as consistent as possible. We highly [recommend to go through the complete list](https://systeminformation.io/changes.html) and adapt your own code to be again compatible to the new version 5.
|
|
21
|
-
|
|
22
|
-
| Function | Old | New (V5) | Comments |
|
|
23
|
-
| --------------- | ------------------ | ------------------ | ------------------ |
|
|
24
|
-
| unsupported values | -1 | null | values which are unknown or<br>unsupported on platform |
|
|
25
|
-
| `battery()` | hasbattery<br>cyclecount<br>ischarging<br>designedcapacity<br>maxcapacity<br>acconnected<br>timeremaining | hasBattery<br>cycleCount<br>isCharging<br>designedCapacity<br>maxCapacity<br>acConnected<br>timeRemaining | pascalCase conformity |
|
|
26
|
-
| `blockDevices()` | fstype | fsType | pascalCase conformity |
|
|
27
|
-
| `cpu()` | speedmin<br>speedmax | speedMin<br>speedMax | pascalCase conformity |
|
|
28
|
-
| `cpu().speed`<br>`cpu().speedMin`<br>`cpu().speedMax` | string values | now returning<br>numerical values | better value handling |
|
|
29
|
-
| `cpuCurrentspeed()` | | cpuCurrentSpeed() | function name changed<br>pascalCase conformity |
|
|
30
|
-
| `currentLoad()` | avgload<br>currentload<br>currentload_user<br>currentload_system<br>currentload_nice<br>currentload_idle<br>currentload_irq<br>raw_currentload | avgLoad<br>currentLoad<br>currentLoadUser<br>currentLoadSystem<br>currentLoadNice<br>currentLoadIdle<br>currentLoadIrq<br>rawCurrentLoad | pascalCase conformity |
|
|
31
|
-
| `dockerContainerStats()` | mem_usage<br>mem_limit<br>mem_percent<br>cpu_percent<br>cpu_stats<br>precpu_stats<br>memory_stats | memUsage<br>memLimit<br>memPercent<br>cpuPercent<br>cpuStats<br>precpuStats<br>memoryStats | pascalCase conformity |
|
|
32
|
-
| `dockerContainerProcesses()` | pid_host | pidHost | pascalCase conformity |
|
|
33
|
-
| `graphics().display` | pixeldepth<br>resolutionx<br>resolutiony<br>sizex<br>sizey | pixelDepth<br>resolutionX<br>resolutionY<br>sizeX<br>sizeY | pascalCase conformity |
|
|
34
|
-
| `networkConnections()` | localaddress<br>localport<br>peeraddress<br>peerport | localAddress<br>localPort<br>peerAddress<br>peerPort | pascalCase conformity |
|
|
35
|
-
| `networkInterfaces()` | carrier_changes | carrierChanges | pascalCase conformity |
|
|
36
|
-
| `processes()` | mem_vsz<br>mem_rss<br>pcpu<br>pcpuu<br>pcpus<br>pmem | memVsz<br>memRss<br>cpu<br>cpuu<br>cpus<br>mem | pascalCase conformity<br>renamed attributes |
|
|
37
|
-
| `processLoad()` | result as object | result as array of objects | function now allows to provide more than<br>one process (as a comma separated list) |
|
|
38
|
-
| `services()` | pcpu<br>pmem | cpu<br>mem | renamed attributes |
|
|
39
|
-
| `vbox()` | HPET<br>PAE<br>APIC<br>X2APIC<br>ACPI<br>IOAPIC<br>biosAPICmode<br>TRC | hpet<br>pae<br>apic<br>x2Apic<br>acpi<br>ioApic<br>biosApicMode<br>rtc | pascalCase conformity |
|
|
40
|
-
|
|
41
|
-
#### Other Improvements and Changes
|
|
42
|
-
|
|
43
|
-
- `baseboard()`: added memMax, memSlots
|
|
44
|
-
- `bios()`: added language and features (linux)
|
|
45
|
-
- `cpu()`: extended AMD processor list
|
|
46
|
-
- `cpu()`: extended socket list (win)
|
|
47
|
-
- `cpu()`: added virtualization if cpu supports virtualization
|
|
48
|
-
- `cpu()`: now flags are part of this function
|
|
49
|
-
- `cpuTemperature()` added added socket and chipset temp (linux)
|
|
50
|
-
- `disksIO()` added wait time (linux)
|
|
51
|
-
- `diskLayout()`: added USB drives (mac OS)
|
|
52
|
-
- `diskLayout()`: added S.M.R.R.T. (win)
|
|
53
|
-
- `fsSize()`: added available
|
|
54
|
-
- `fsSize()`: improved calculation of used
|
|
55
|
-
- `getData()`: support for passing parameters and filters (see section General / getData)
|
|
56
|
-
- `graphics()`: extended properties (mac OS)
|
|
57
|
-
- `graphics()`: extended nvidia-smi parsing
|
|
58
|
-
- `networkInterfaces()`: type detection improved (win - wireless)
|
|
59
|
-
- `memLayout()`: extended manufacturer list (decoding)
|
|
60
|
-
- `memLayout()`: added ECC flag
|
|
61
|
-
- `osInfo()`: better fqdn (win)
|
|
62
|
-
- `osinfo()`: added hypervizor if hyper-v is enabled (win only)
|
|
63
|
-
- `osInfo()`: added remoteSession (win only)
|
|
64
|
-
- `system()`: better Raspberry PI detection
|
|
65
|
-
- `system()`: added virtual and virtualHost (if system is virtual instance)
|
|
66
|
-
- `uuid()`: better value support
|
|
67
|
-
- `uuid()`: added MACs
|
|
68
|
-
- `uuid()`: better Raspberry Pi hardware ID
|
|
69
|
-
- `Apple M1 Silicon extended support (now everything supported except of cpu temperature)
|
|
70
|
-
- `updated TypeScript definitions
|
|
71
|
-
|
|
72
|
-
#### Test Full Version 5 Functionality
|
|
73
|
-
|
|
74
|
-
If you want to see all function results on your machine, please head over to (Testing section)[https://systeminformation.io/tests.html]. We implemented a tiny test suite where you can easily go through all functions and test resuls on your machine without coding.
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
For major (breaking) changes - **version 4, 3 and 2** - see end of page.
|
|
78
|
-
|
|
79
|
-
## Version History
|
|
80
|
-
|
|
81
|
-
| Version | Date | Comment |
|
|
82
|
-
| -------------- | -------------- | -------- |
|
|
83
|
-
| 5.9.9 | 2021-10-27 | `graphics` fixed screen resolution issue (windows) |
|
|
84
|
-
| 5.9.8 | 2021-10-22 | `wmic` fixed code page issues (windows) |
|
|
85
|
-
| 5.9.7 | 2021-10-09 | `battery()` fixed typo seperator (windows) |
|
|
86
|
-
| 5.9.6 | 2021-10-08 | `system()` fixed virtual on WSL2 |
|
|
87
|
-
| 5.9.5 | 2021-10-08 | `battery()` fixed isCharging (windows) |
|
|
88
|
-
| 5.9.4 | 2021-09-23 | `processes()` fixed memVsz, Memrss (macOS M1) |
|
|
89
|
-
| 5.9.3 | 2021-09-17 | `cpuTemperature()` improved tdie detection (linux) |
|
|
90
|
-
| 5.9.2 | 2021-09-16 | `graohics()` (macOS), `memLayout()` (win) improvements |
|
|
91
|
-
| 5.9.1 | 2021-09-15 | `diskLayout()` fix size (macOS) |
|
|
92
|
-
| 5.9.0 | 2021-09-15 | `graphics()` new XML parser, added properties (macOS) |
|
|
93
|
-
| 5.8.9 | 2021-09-13 | `battery()` fix linux |
|
|
94
|
-
| 5.8.8 | 2021-09-11 | `wifiConnections()`, `wifiInterfaces()`, `wifiNetworks()` fix windows |
|
|
95
|
-
| 5.8.7 | 2021-09-01 | `processes()` fix alpine linux |
|
|
96
|
-
| 5.8.6 | 2021-08-26 | `cpu()` improved detection (win) |
|
|
97
|
-
| 5.8.5 | 2021-08-26 | `osInfo()` hyper-v detection fix (win VM) |
|
|
98
|
-
| 5.8.4 | 2021-08-26 | `graphics()` added vendor (macOS) |
|
|
99
|
-
| 5.8.3 | 2021-08-26 | `graphics()` fix empty controller (macOS) |
|
|
100
|
-
| 5.8.2 | 2021-08-24 | `baseboard()`, `getDefaultNetworkInterface()` fix catch error |
|
|
101
|
-
| 5.8.1 | 2021-08-24 | `battery()` fix capacity |
|
|
102
|
-
| 5.8.0 | 2021-08-02 | `disksIO()` added waitTime, waitPercent (linux) |
|
|
103
|
-
| 5.7.14 | 2021-08-01 | `cpu()` cache calculation fix (linux) |
|
|
104
|
-
| 5.7.13 | 2021-07-28 | `osInfo()` fix uefi detection (win) |
|
|
105
|
-
| 5.7.12 | 2021-07-27 | `osInfo()` fix uefi detection (win) |
|
|
106
|
-
| 5.7.11 | 2021-07-27 | typescript typings fix `bluetoothDevices()` |
|
|
107
|
-
| 5.7.10 | 2021-07-26 | typescript typings fix `processLoad()` |
|
|
108
|
-
| 5.7.9 | 2021-07-25 | `uuid()` better regedit path detection (win) |
|
|
109
|
-
| 5.7.8 | 2021-07-16 | `battery()` fix designedCapacity (win, linux), fix catch error |
|
|
110
|
-
| 5.7.7 | 2021-06-15 | `graphics()` improved detection screen resolution (macOS) |
|
|
111
|
-
| 5.7.6 | 2021-06-09 | `battery()` improved detection (additional batteries windows) |
|
|
112
|
-
| 5.7.5 | 2021-06-08 | `memLayout()` improved clock speed detection (windows) |
|
|
113
|
-
| 5.7.4 | 2021-05-27 | `osInfo()`, `cpu()` improved hypervisor, virtualization detection (windows) |
|
|
114
|
-
| 5.7.3 | 2021-05-26 | `osInfo()` improved UEFI detection (windows) |
|
|
115
|
-
| 5.7.2 | 2021-05-24 | `system()` virtual detection improvement |
|
|
116
|
-
| 5.7.1 | 2021-05-20 | `graphics()` Check for qwMemorySize on Windows |
|
|
117
|
-
| 5.7.0 | 2021-05-20 | `diskLayout()` added smartdata for win (if istalled) |
|
|
118
|
-
| 5.6.22 | 2021-05-18 | `diskLayout()` fixed to small buffer smartdata (linux) |
|
|
119
|
-
| 5.6.21 | 2021-05-14 | `graphics()` fixed dual gpu issue (macOS) |
|
|
120
|
-
| 5.6.20 | 2021-05-07 | `system()` fixed vm detection (linux) |
|
|
121
|
-
| 5.6.19 | 2021-05-06 | `services()` modified service listing (linux) |
|
|
122
|
-
| 5.6.18 | 2021-05-06 | `processes()` fixed Windows mem bug (naming conform to all platforms) |
|
|
123
|
-
| 5.6.17 | 2021-05-05 | `networkInterfaces()` fixed Windows XP bug (WMIC NetEnabled) |
|
|
124
|
-
| 5.6.16 | 2021-05-05 | `graphics()` fixed compare bug |
|
|
125
|
-
| 5.6.15 | 2021-05-05 | restored Node 4.x compatibility |
|
|
126
|
-
| 5.6.14 | 2021-05-04 | `networkGatewayDefault()` macOS improvement for active VPN |
|
|
127
|
-
| 5.6.13 | 2021-05-04 | `dockerImagesInspect()`, `dockerContainerInspect()`, `dockerContainerProcesses()` security updates |
|
|
128
|
-
| 5.6.12 | 2021-04-09 | `networkinterfaces()` windows detection fix |
|
|
129
|
-
| 5.6.11 | 2021-04-08 | `versions()` parameter sanitation |
|
|
130
|
-
| 5.6.10 | 2021-03-29 | `vboxInfo()` fixed windows bug |
|
|
131
|
-
| 5.6.9 | 2021-03-28 | `graphics()` fixed nvidia-smi compare bug |
|
|
132
|
-
| 5.6.8 | 2021-03-22 | typescript definitions fix `wifiInterfces()`, `wifiConnections()` |
|
|
133
|
-
| 5.6.7 | 2021-03-16 | `inetLatency()` `ineChecksite()` schema validation |
|
|
134
|
-
| 5.6.6 | 2021-03-16 | code refactoring |
|
|
135
|
-
| 5.6.5 | 2021-03-15 | `cpuTemperature()` fix (linux) |
|
|
136
|
-
| 5.6.4 | 2021-03-15 | `sanitizeShellString()` and other security improvements |
|
|
137
|
-
| 5.6.3 | 2021-03-14 | `sanitizeShellString()` improvement |
|
|
138
|
-
| 5.6.2 | 2021-03-10 | `networkInterfaces()` `cpu()` improvement (win) |
|
|
139
|
-
| 5.6.1 | 2021-03-03 | `get()` fixed issue boolean parameters |
|
|
140
|
-
| 5.6.0 | 2021-03-03 | `cpuTemperature()` added socket and chipset temp (linux) |
|
|
141
|
-
| 5.5.0 | 2021-02-25 | `dockerVolumes()` added |
|
|
142
|
-
| 5.4.0 | 2021-02-24 | `dockerImages()` added |
|
|
143
|
-
| 5.3.5 | 2021-02-23 | `dockerContainerStats()` fixed parameter * |
|
|
144
|
-
| 5.3.4 | 2021-02-20 | `sanitizeShellString()` optimized strict sanitation |
|
|
145
|
-
| 5.3.3 | 2021-02-15 | `dockerContainerStats()` fixed ID splitting |
|
|
146
|
-
| 5.3.2 | 2021-02-15 | `inetLatency()` `ineChecksite()` fixed possible security issue (file://) |
|
|
147
|
-
| 5.3.1 | 2021-02-14 | `inetLatency()` `ineChecksite()` `servcices()` `processes()` fixed possible security issue (arrays) |
|
|
148
|
-
| 5.3.0 | 2021-02-12 | `osInfo()` added remoteSession (windows) |
|
|
149
|
-
| 5.2.7 | 2021-02-12 | `fsStats()`, `blockDevices()` improved linux |
|
|
150
|
-
| 5.2.6 | 2021-02-12 | `inetLatency()` fixed possible DOS intrusion |
|
|
151
|
-
| 5.2.5 | 2021-02-11 | `processes()` fixed truncated params (linux) |
|
|
152
|
-
| 5.2.4 | 2021-02-11 | `currentLoad()` fixed issue |
|
|
153
|
-
| 5.2.3 | 2021-02-11 | `diskLayout()` added USB drives (mac OS) |
|
|
154
|
-
| 5.2.2 | 2021-02-11 | code cleanup, updated docs |
|
|
155
|
-
| 5.2.1 | 2021-02-10 | `system()` fixed issue virtual detect (linux) |
|
|
156
|
-
| 5.2.0 | 2021-02-10 | `wifiInterfces()` and `wifiConnections()` added |
|
|
157
|
-
| 5.1.2 | 2021-02-08 | fixed node 4 compatibility issue |
|
|
158
|
-
| 5.1.1 | 2021-02-08 | `baseboard()` added memMax, memSlots, smaller improvements Raspberry |
|
|
159
|
-
| 5.1.0 | 2021-02-08 | `memLayout()` added ECC flag, `bios()` added language, features (linux) |
|
|
160
|
-
| 5.0.11 | 2021-02-07 | `fsSize()` fixed windows WSL issue |
|
|
161
|
-
| 5.0.10 | 2021-02-06 | `getDynamicData()` fixed windows WSL issue |
|
|
162
|
-
| 5.0.9 | 2021-02-02 | `fsSize()` fixed parsing edge case issue mac OS |
|
|
163
|
-
| 5.0.8 | 2021-01-30 | typescript typings fix cpuCurrentSpeed |
|
|
164
|
-
| 5.0.7 | 2021-01-29 | `fsSize()` available fixed windows and typescript typings |
|
|
165
|
-
| 5.0.6 | 2021-01-28 | `osinfo()` added hypervisor (win only) |
|
|
166
|
-
| 5.0.5 | 2021-01-27 | `networkInterfaces()` type detection improved (win) |
|
|
167
|
-
| 5.0.4 | 2021-01-27 | `cpu()` improved manufacturer decoding (linux) |
|
|
168
|
-
| 5.0.3 | 2021-01-27 | `cpu()` fix virtualization, `wifi()` fix raspberry |
|
|
169
|
-
| 5.0.2 | 2021-01-26 | updated typescript typings |
|
|
170
|
-
| 5.0.1 | 2021-01-26 | code cleanup |
|
|
171
|
-
| 5.0.0 | 2021-01-26 | new major version 5 release |
|
|
172
|
-
| 4.34.9 | 2021-01-25 | `graphics()` virtual controller vram value fix (win) |
|
|
173
|
-
| 4.34.8 | 2021-01-25 | `graphics()` controller subDeviceId fix (win) |
|
|
174
|
-
| 4.34.7 | 2021-01-13 | `services()` improved service discovery (linux) |
|
|
175
|
-
| 4.34.6 | 2021-01-12 | `networkInterfaces()` catch errors |
|
|
176
|
-
| 4.34.5 | 2021-01-07 | `networkInterfaceDefault()` fixed CMD popup (windows) |
|
|
177
|
-
| 4.34.4 | 2021-01-06 | `system()` fixed vitrual catch error |
|
|
178
|
-
| 4.34.3 | 2021-01-06 | `graphics()` fixed non nvidia-smi controllers (win) |
|
|
179
|
-
| 4.34.2 | 2021-01-05 | `system()` uuid lowercase as in uuid() |
|
|
180
|
-
| 4.34.1 | 2021-01-05 | `graphics()` nvidia-smi detection improved |
|
|
181
|
-
| 4.34.0 | 2021-01-05 | `system()` added flag virtual |
|
|
182
|
-
| 4.33.8 | 2021-01-04 | `virtualBox()` fix issue windows host |
|
|
183
|
-
| 4.33.7 | 2021-01-04 | `graphics()` nvidia-smi detection improved |
|
|
184
|
-
| 4.33.6 | 2021-01-02 | `dockerContainerStats()` fix `tx` changed to `wx` as documented |
|
|
185
|
-
| 4.33.5 | 2020-12-30 | `graphics()` vram (nvidia-smi) |
|
|
186
|
-
| 4.33.4 | 2020-12-28 | `typescript` typings fix |
|
|
187
|
-
| 4.33.3 | 2020-12-27 | `graphics()` updated docs |
|
|
188
|
-
| 4.33.2 | 2020-12-27 | `graphics()` fixed issue (nvidia-smi) |
|
|
189
|
-
| 4.33.1 | 2020-12-22 | `versions()` fixed issue (mac OS) |
|
|
190
|
-
| 4.33.0 | 2020-12-21 | `graphics()` nvidia-smi support (linux, windows) |
|
|
191
|
-
| 4.32.0 | 2020-12-14 | `graphics()` clinfo support (linux) |
|
|
192
|
-
| 4.31.2 | 2020-12-14 | `graphics()` Windows 7 Graphics Fixes (Multi Monitor) |
|
|
193
|
-
| 4.31.1 | 2020-12-11 | `inetLatency()` command injection vulnaribility fix |
|
|
194
|
-
| 4.31.0 | 2020-12-06 | `osInfo()` added FQDN |
|
|
195
|
-
| 4.30.11 | 2020-12-02 | `cpu()` bug fix speed parsing |
|
|
196
|
-
| 4.30.10 | 2020-12-01 | `cpu()` handled speed parsing error (Apple Silicon) |
|
|
197
|
-
| 4.30.9 | 2020-12-01 | `cpu()` corrected processor names (Raspberry Pi) |
|
|
198
|
-
| 4.30.8 | 2020-11-30 | `fsSize()` catch error (mac OS) |
|
|
199
|
-
| 4.30.7 | 2020-11-29 | `cpuTemperature()` rewrite hwmon parsing |
|
|
200
|
-
| 4.30.6 | 2020-11-27 | wmic added default windows path (windows) |
|
|
201
|
-
| 4.30.5 | 2020-11-26 | adapted security update (prototype pollution prevention) |
|
|
202
|
-
| 4.30.4 | 2020-11-25 | reverted Object.freeze because it broke some projects |
|
|
203
|
-
| 4.30.3 | 2020-11-25 | security update (prototype pollution prevention) Object.freeze |
|
|
204
|
-
| 4.30.2 | 2020-11-25 | security update (prototype pollution prevention) |
|
|
205
|
-
| 4.30.1 | 2020-11-12 | updated docs |
|
|
206
|
-
| 4.30.0 | 2020-11-12 | `get()` possibility to provide params |
|
|
207
|
-
| 4.29.3 | 2020-11-09 | `blockdevices()` catch errors adapted for just one line |
|
|
208
|
-
| 4.29.2 | 2020-11-09 | `blockdevices()` catch errors |
|
|
209
|
-
| 4.29.1 | 2020-11-08 | `cpu()`, `system()` better parsing Raspberry Pi revision codes |
|
|
210
|
-
| 4.29.0 | 2020-11-08 | `fsSize()` correct fs type detection macOS (HFS, APFS, NFS) |
|
|
211
|
-
| 4.28.1 | 2020-11-05 | code cleanup, removing debug console.log() |
|
|
212
|
-
| 4.28.0 | 2020-11-04 | `graphics()` added deviceName (windows) |
|
|
213
|
-
| 4.27.11 | 2020-10-26 | `inetChecksite()` fixed vulnerability: command injection |
|
|
214
|
-
| 4.27.10 | 2020-10-16 | `dockerContainers()` resolved hanging issue |
|
|
215
|
-
| 4.27.9 | 2020-10-13 | `networkInterfaces()` loopback internal detection (windows) |
|
|
216
|
-
| 4.27.8 | 2020-10-08 | windows codepages partial fix |
|
|
217
|
-
| 4.27.7 | 2020-10-05 | updated typescript typings, minor fixes |
|
|
218
|
-
| 4.27.6 | 2020-10-02 | `get()` fixed when results are in arrays |
|
|
219
|
-
| 4.27.5 | 2020-09-18 | `cpuTemperature()` fix try catch (linux) |
|
|
220
|
-
| 4.27.4 | 2020-09-16 | `networkInterfaceDefault()` optimization (macOS) |
|
|
221
|
-
| 4.27.3 | 2020-08-26 | updated typescript typings |
|
|
222
|
-
| 4.27.2 | 2020-08-26 | fixed issue breaking node v4 compatibility |
|
|
223
|
-
| 4.27.1 | 2020-08-25 | `networkStats()` fixed packages dropped (linux) |
|
|
224
|
-
| 4.27.0 | 2020-08-24 | `observe()` added function to observe/watch system parameters |
|
|
225
|
-
| 4.26.12 | 2020-08-21 | `versions()` fixed issue windows |
|
|
226
|
-
| 4.26.11 | 2020-08-20 | `cpuTemperature()` fixed issue windows |
|
|
227
|
-
| 4.26.10 | 2020-07-16 | `networkStats()` fixed issue blocking windows |
|
|
228
|
-
| 4.26.9 | 2020-06-06 | `networkStats()` fixed comparison issue windows |
|
|
229
|
-
| 4.26.8 | 2020-06-06 | `networkInterfaces()` fixed caching issue |
|
|
230
|
-
| 4.26.7 | 2020-06-06 | `cpuTemperature()` fixed raspberry pi sensors issue |
|
|
231
|
-
| 4.26.6 | 2020-06-03 | `diskLayout()` fixed issue linux |
|
|
232
|
-
| 4.26.5 | 2020-05-27 | `cpuTemperature()` optimizes scanning AMD linux sensors |
|
|
233
|
-
| 4.26.4 | 2020-05-21 | `cpuTemperature()` fix (BSD), code cleanup |
|
|
234
|
-
| 4.26.3 | 2020-05-20 | updated documentation (macOS temperature) |
|
|
235
|
-
| 4.26.2 | 2020-05-19 | `processes()` memory leak fix |
|
|
236
|
-
| 4.26.1 | 2020-05-13 | code cleanup |
|
|
237
|
-
| 4.26.0 | 2020-05-12 | `diskLayout()` added full smart data where supported |
|
|
238
|
-
| 4.25.2 | 2020-05-12 | `getDynamicData()` added wifiNetworks() |
|
|
239
|
-
| 4.25.1 | 2020-05-07 | `get()` minor bounds test fix, updated docs |
|
|
240
|
-
| 4.25.0 | 2020-05-07 | `get()` added function to get partial system info |
|
|
241
|
-
| 4.24.2 | 2020-05-06 | `cpu()` fix (BSD), `networkStats()` fix BSD |
|
|
242
|
-
| 4.24.1 | 2020-05-03 | `processes()` fix parsing command and params |
|
|
243
|
-
| 4.24.0 | 2020-05-01 | `networkInterfaces()` added subnet mask ip4 and ip6 |
|
|
244
|
-
| 4.23.10 | 2020-05-01 | `cpuTemperature()` optimized parsing linux |
|
|
245
|
-
| 4.23.9 | 2020-04-29 | `currentLoad()` workaround for no os.cpus info |
|
|
246
|
-
| 4.23.8 | 2020-04-26 | `getMacAddresses()` fix added try catch |
|
|
247
|
-
| 4.23.7 | 2020-04-26 | `getCpuCurrentSpeedSync()` workaround fix |
|
|
248
|
-
| 4.23.6 | 2020-04-25 | `networkGatewayDefault()` bug fix no interfaces |
|
|
249
|
-
| 4.23.5 | 2020-04-20 | updated docs |
|
|
250
|
-
| 4.23.4 | 2020-04-20 | `users()` optimized parseDateTime function |
|
|
251
|
-
| 4.23.3 | 2020-04-09 | refactored to avoid `cat` |
|
|
252
|
-
| 4.23.2 | 2020-04-08 | `cpu()` fixed getting base frequency for AMD Ryzen |
|
|
253
|
-
| 4.23.1 | 2020-03-11 | `diskLayout()` optimized detection linux |
|
|
254
|
-
| 4.23.0 | 2020-03-08 | `versions()` added param to specify which program/lib versions to detect |
|
|
255
|
-
| 4.22.7 | 2020-03-08 | `diskLayout()` fixed linux |
|
|
256
|
-
| 4.22.6 | 2020-03-08 | `network()` fixed DHCP linux|
|
|
257
|
-
| 4.22.5 | 2020-03-04 | `graphics()` fixed vram macOS |
|
|
258
|
-
| 4.22.4 | 2020-03-01 | `versions()` added dotnet, typings fix |
|
|
259
|
-
| 4.22.3 | 2020-02-20 | `memLayout()` code cleanup |
|
|
260
|
-
| 4.22.2 | 2020-02-19 | `memLayout()` raspberry PI mem voltage fix |
|
|
261
|
-
| 4.22.1 | 2020-02-17 | `memLayout()` raspberry PI support |
|
|
262
|
-
| 4.22.0 | 2020-02-17 | `services()` added pids (windows) |
|
|
263
|
-
| 4.21.3 | 2020-02-16 | `versions()` fixed mysql version (macOS) |
|
|
264
|
-
| 4.21.2 | 2020-02-11 | `networkConnections()` fixed linux (debian) issue |
|
|
265
|
-
| 4.21.1 | 2020-01-31 | `networkGatewayDefault()` fixed windows 7 issue |
|
|
266
|
-
| 4.21.0 | 2020-01-27 | `npx` compatibility |
|
|
267
|
-
| 4.20.1 | 2020-01-26 | `battery()` code refactoring, cleanup, updated docs |
|
|
268
|
-
| 4.20.1 | 2020-01-26 | `battery()` code refactoring, cleanup, updated docs |
|
|
269
|
-
| 4.20.0 | 2020-01-25 | `battery()` added designCapacity, voltage, unit |
|
|
270
|
-
| 4.19.4 | 2020-01-24 | `mem()` prevent log messages, `memgetDefaultNetworkInterface()` catch errors |
|
|
271
|
-
| 4.19.3 | 2020-01-24 | `memLayout()` bank info fix macOS |
|
|
272
|
-
| 4.19.2 | 2020-01-19 | `cpu()` muli-processor fix windows |
|
|
273
|
-
| 4.19.1 | 2020-01-14 | `osInfo()` uefi fix windows |
|
|
274
|
-
| 4.19.0 | 2020-01-12 | `osInfo()` added uefi |
|
|
275
|
-
| 4.18.3 | 2020-01-10 | `fsSize()` fix excluding loop/snap devices |
|
|
276
|
-
| 4.18.2 | 2020-01-10 | `memLayout()` fix memsize linux (modules >= 32 GB) |
|
|
277
|
-
| 4.18.1 | 2020-01-07 | updated docs |
|
|
278
|
-
| 4.18.0 | 2020-01-07 | `networkInterfaces()` added dhcp for mac os, added dhcp linux fallback |
|
|
279
|
-
| 4.17.3 | 2020-01-05 | code cleanup |
|
|
280
|
-
| 4.17.2 | 2020-01-05 | `cpu().speed` AMD base frequency and fix (0.00) |
|
|
281
|
-
| 4.17.1 | 2020-01-04 | `fsSize()` alpine linux support |
|
|
282
|
-
| 4.17.0 | 2020-01-04 | `networkInterfaces()` added dhcp, dnsSuffix, ieee8021xAuth, ieee8021xState |
|
|
283
|
-
| 4.16.1 | 2020-01-02 | `networkInterfaces()` bug fix (osx) |
|
|
284
|
-
| 4.16.0 | 2019-11-27 | `networkGatewayDefault()` added |
|
|
285
|
-
| 4.15.3 | 2019-11-10 | type definitions and docs update |
|
|
286
|
-
| 4.15.2 | 2019-11-10 | `mem()` improved calculation linux |
|
|
287
|
-
| 4.15.1 | 2019-11-10 | `diskLayout()` added support for older lsblk versions (linux) |
|
|
288
|
-
| 4.15.0 | 2019-11-10 | `cpu()` added governor (linux) |
|
|
289
|
-
| 4.14.17 | 2019-10-22 | `graphics()` improved display detection (windows) |
|
|
290
|
-
| 4.14.16 | 2019-10-19 | `graphics()` improved display detection (windows) |
|
|
291
|
-
| 4.14.15 | 2019-10-18 | `graphics()` fallback display detection (windows) |
|
|
292
|
-
| 4.14.14 | 2019-10-18 | `powerShell()` fixed error handling (windows) |
|
|
293
|
-
| 4.14.13 | 2019-10-15 | `networkConnections()` fixed parsing (linux) |
|
|
294
|
-
| 4.14.12 | 2019-10-14 | `getCpu()` fixed multi socket detection (linux) |
|
|
295
|
-
| 4.14.11 | 2019-10-01 | type definitions fix dockerInfo |
|
|
296
|
-
| 4.14.10 | 2019-10-01 | type definitions fix memLayout |
|
|
297
|
-
| 4.14.9 | 2019-10-01 | `processLoad()` fix windows |
|
|
298
|
-
| 4.14.8 | 2019-08-22 | `parseDateTime()` fix coding error |
|
|
299
|
-
| 4.14.7 | 2019-08-22 | `battery()` windows acconnected improvement |
|
|
300
|
-
| 4.14.6 | 2019-08-22 | `users()` improved date time parsing |
|
|
301
|
-
| 4.14.5 | 2019-08-22 | `fsSize()` fix windows result as number |
|
|
302
|
-
| 4.14.4 | 2019-07-20 | `verions()` fix pip, pip3 |
|
|
303
|
-
| 4.14.3 | 2019-07-09 | `system()` sku fix windows |
|
|
304
|
-
| 4.14.2 | 2019-07-07 | `networkConnections()` pid linux fix NAN |
|
|
305
|
-
| 4.14.1 | 2019-07-04 | `graphics()` added display position windows |
|
|
306
|
-
| 4.14.0 | 2019-07-03 | `processes()` added process path and params |
|
|
307
|
-
| 4.13.2 | 2019-07-02 | `versions()` fix getting all versions |
|
|
308
|
-
| 4.13.1 | 2019-07-01 | `versions()` gcc fix macos |
|
|
309
|
-
| 4.13.0 | 2019-07-01 | `networkConnections()` added PID and process |
|
|
310
|
-
| 4.12.2 | 2019-06-24 | `system()` added Raspberry PI 4 detection |
|
|
311
|
-
| 4.12.1 | 2019-06-24 | `networkInterface()` virtual interfaces macos, `networkInterfaceDefault()` |
|
|
312
|
-
| 4.12.0 | 2019-06-21 | `networkInterface()` added property virtual |
|
|
313
|
-
| 4.11.6 | 2019-06-19 | `util` bug fix |
|
|
314
|
-
| 4.11.5 | 2019-06-19 | `dockerAll()` bug fix |
|
|
315
|
-
| 4.11.4 | 2019-06-17 | type definitions bug fix |
|
|
316
|
-
| 4.11.3 | 2019-06-16 | `graphics()` optimization windows |
|
|
317
|
-
| 4.11.2 | 2019-06-16 | `wifiNetworks()` bug fixes |
|
|
318
|
-
| 4.11.1 | 2019-06-15 | updated docs |
|
|
319
|
-
| 4.11.0 | 2019-06-14 | `wifiNetworks()` added available wifi networks |
|
|
320
|
-
| 4.10.0 | 2019-06-14 | `graphics()` windows multiple display support |
|
|
321
|
-
| 4.9.2 | 2019-06-12 | type definitions bug fix |
|
|
322
|
-
| 4.9.1 | 2019-06-11 | `networkStats()` bug fix windows |
|
|
323
|
-
| 4.9.0 | 2019-06-03 | `graphics()` added vendor, refresh rate, current res |
|
|
324
|
-
| 4.8.4 | 2019-06-03 | `vboxInfo()` fixed call parameters |
|
|
325
|
-
| 4.8.3 | 2019-06-01 | `vboxInfo()` added stoppedSince, started, stopped |
|
|
326
|
-
| 4.8.2 | 2019-05-31 | `dockerInfo()` changed property naming style |
|
|
327
|
-
| 4.8.1 | 2019-05-31 | updated docs |
|
|
328
|
-
| 4.8.0 | 2019-05-31 | added `vboxInfo()` detailed virtual box info |
|
|
329
|
-
| 4.7.3 | 2019-05-30 | updated typescript typings |
|
|
330
|
-
| 4.7.2 | 2019-05-30 | `versions()` added virtualbox, java popup fix macos |
|
|
331
|
-
| 4.7.1 | 2019-05-29 | `memLayout()` fix macos mojave |
|
|
332
|
-
| 4.7.0 | 2019-05-29 | partial netBSD support |
|
|
333
|
-
| 4.6.1 | 2019-05-29 | get wmic path - fic windows |
|
|
334
|
-
| 4.6.0 | 2019-05-27 | added `dockerInfo()` |
|
|
335
|
-
| 4.5.1 | 2019-05-17 | updated docs |
|
|
336
|
-
| 4.5.0 | 2019-05-17 | `fsOpenFiles()` added open file descriptor count |
|
|
337
|
-
| 4.4.1 | 2019-05-11 | updated docs |
|
|
338
|
-
| 4.4.0 | 2019-05-11 | `dockerContainers()` added started, finished time |
|
|
339
|
-
| 4.3.0 | 2019-05-09 | `dockerContainers()` `dockerStats()` added restartCount |
|
|
340
|
-
| 4.2.1 | 2019-05-09 | `networkInterfaceDefault()` time delay fix (linux) |
|
|
341
|
-
| 4.2.0 | 2019-05-09 | `osInfo()` extended service pack version (windows) |
|
|
342
|
-
| 4.1.8 | 2019-05-09 | `graphics()` resolve on error (windows) |
|
|
343
|
-
| 4.1.7 | 2019-05-09 | `users()` parsing fix (windows) |
|
|
344
|
-
| 4.1.6 | 2019-04-24 | `memory()` swap used fix (linux) |
|
|
345
|
-
| 4.1.5 | 2019-04-19 | refactored `wmic` calls to work also on Windows XP |
|
|
346
|
-
| 4.1.4 | 2019-03-26 | `networkInterfaces()` speed bug (windows) |
|
|
347
|
-
| 4.1.3 | 2019-03-24 | wmic path detection (windows) |
|
|
348
|
-
| 4.1.2 | 2019-03-23 | updated docs |
|
|
349
|
-
| 4.1.1 | 2019-03-13 | updated typescript typings |
|
|
350
|
-
| 4.1.0 | 2019-03-13 | `versions()` added pip, pip3 |
|
|
351
|
-
| 4.0.16 | 2019-03-12 | Happy birthday - 5th aniversary |
|
|
352
|
-
| 4.0.15 | 2019-03-02 | `versions()` added java, python3, optimized gcc |
|
|
353
|
-
| 4.0.14 | 2019-03-01 | updated typescript typings |
|
|
354
|
-
| 4.0.13 | 2019-03-01 | `diskLayout()` added device (/dev/sda...) linux, mac |
|
|
355
|
-
| 4.0.12 | 2019-03-01 | `diskLayout()` linux rewritten - better detection |
|
|
356
|
-
| 4.0.11 | 2019-02-23 | `users()` fix windows (time), added @ts-check |
|
|
357
|
-
| 4.0.10 | 2019-02-10 | `networkInterfaceDefault()` fix windows |
|
|
358
|
-
| 4.0.9 | 2019-02-08 | `cpu()` fix, code cleanup |
|
|
359
|
-
| 4.0.8 | 2019-02-05 | `inetLatency()` Windows fix parse chinese output |
|
|
360
|
-
| 4.0.7 | 2019-02-05 | `inetLatency()` Windows fix |
|
|
361
|
-
| 4.0.6 | 2019-02-04 | powershell catch error |
|
|
362
|
-
| 4.0.5 | 2019-02-03 | updated docs |
|
|
363
|
-
| 4.0.4 | 2019-02-03 | code cleanup, updated docs |
|
|
364
|
-
| 4.0.3 | 2019-02-03 | `networkInterfaces(), chassis()` fixed two more issues |
|
|
365
|
-
| 4.0.2 | 2019-02-03 | `networkInterfaces(), chassis()` fixed smaller issues |
|
|
366
|
-
| 4.0.1 | 2019-02-02 | updated docs |
|
|
367
|
-
| 4.0.0 | 2019-02-02 | new major version |
|
|
368
|
-
| 3.54.0 | 2018-12-30 | added TypeScript type definitions |
|
|
369
|
-
| 3.53.1 | 2018-12-29 | `versions()` bug fix nginx version |
|
|
370
|
-
| 3.53.0 | 2018-12-29 | `versions()` added perl, python, gcc |
|
|
371
|
-
| 3.52.7 | 2018-12-29 | `versions()` bug fix macOS detection |
|
|
372
|
-
| 3.52.6 | 2018-12-28 | `versions()` bug fix macOS |
|
|
373
|
-
| 3.52.5 | 2018-12-28 | preparing automated tests, travis-ci integration, added dev-dependencies |
|
|
374
|
-
| 3.52.4 | 2018-12-27 | `graphics().controllers` bugfix linux |
|
|
375
|
-
| 3.52.3 | 2018-12-27 | `os().codepage` bugfix |
|
|
376
|
-
| 3.52.2 | 2018-12-17 | code cleanup |
|
|
377
|
-
| 3.52.1 | 2018-12-17 | `inetChecksite()` bugfix windows |
|
|
378
|
-
| 3.52.0 | 2018-12-15 | `cpu()` added physical cores, processors, socket type |
|
|
379
|
-
| 3.51.4 | 2018-12-05 | `versions()` bugfix, optimization postgres |
|
|
380
|
-
| 3.51.3 | 2018-11-27 | `mem()` refactoring parsing linux, code cleanup |
|
|
381
|
-
| 3.51.2 | 2018-11-26 | `mem()` bugfix parsing `free` output linux |
|
|
382
|
-
| 3.51.1 | 2018-11-26 | `processLoad()` bugfix windows |
|
|
383
|
-
| 3.51.0 | 2018-11-25 | `processLoad()` added for windows |
|
|
384
|
-
| 3.50.3 | 2018-11-25 | `processLoad()`, `services()` fixed cpu data (linux) |
|
|
385
|
-
| 3.50.2 | 2018-11-23 | network mac adresses: ip support fix |
|
|
386
|
-
| 3.50.1 | 2018-11-23 | `services()` added possibility to specify ALL services "*" for win |
|
|
387
|
-
| 3.50.0 | 2018-11-23 | `services()` added possibility to specify ALL services "*" for linux |
|
|
388
|
-
| 3.49.4 | 2018-11-21 | `battery()` timeremaining optimization (linux) thanks to Jorai Rijsdijk |
|
|
389
|
-
| 3.49.3 | 2018-11-20 | `memLayout()` optimized parsing (win) |
|
|
390
|
-
| 3.49.2 | 2018-11-19 | code cleanup |
|
|
391
|
-
| 3.49.1 | 2018-11-19 | `cpu().brand` removed extra spaces, tabs |
|
|
392
|
-
| 3.49.0 | 2018-11-19 | added system `uuid()` (os specific), `versions()` added postgresql |
|
|
393
|
-
| 3.48.4 | 2018-11-18 | windows: garbled output because of codepage |
|
|
394
|
-
| 3.48.3 | 2018-11-18 | `dockerContainerStats()` fixed issue `cpu_percent` win |
|
|
395
|
-
| 3.48.2 | 2018-11-18 | `dockerContainerStats()` fixed issue `cpu_percent`, win exec |
|
|
396
|
-
| 3.48.1 | 2018-11-17 | `docker...()` fixed issue parsing docker socket JSON |
|
|
397
|
-
| 3.48.0 | 2018-11-17 | `diskLayout()` better interface detection (WIN), `osInfo()` added build, serial |
|
|
398
|
-
| 3.47.0 | 2018-11-06 | `versions()` added docker, postfix |
|
|
399
|
-
| 3.46.0 | 2018-11-05 | fixed issue `versions()`, added system openssl version |
|
|
400
|
-
| 3.45.10 | 2018-11-03 | fixed issue `battery()`, modified `package.json` - files |
|
|
401
|
-
| 3.45.9 | 2018-10-22 | fixed node 4 incompatibility |
|
|
402
|
-
| 3.45.8 | 2018-10-22 | `system()` fix Raspberry Pi detection |
|
|
403
|
-
| 3.45.7 | 2018-10-05 | fixed typos |
|
|
404
|
-
| 3.45.6 | 2018-09-12 | `mem()` bug parsing linux in other languages |
|
|
405
|
-
| 3.45.5 | 2018-09-07 | `diskLayout()` tiny bug S.M.A.R.T status windows |
|
|
406
|
-
| 3.45.4 | 2018-09-06 | added icon to README.md |
|
|
407
|
-
| 3.45.3 | 2018-09-06 | `diskLayout()` optimized media type detection (HD, SSD) on Windows |
|
|
408
|
-
| 3.45.2 | 2018-09-05 | updated imags shields icons |
|
|
409
|
-
| 3.45.1 | 2018-09-05 | updated documentation |
|
|
410
|
-
| 3.45.0 | 2018-09-04 | `diskLayout()` added smartStatus |
|
|
411
|
-
| 3.44.2 | 2018-08-28 | added code quality badges |
|
|
412
|
-
| 3.44.1 | 2018-08-28 | code cleanup |
|
|
413
|
-
| 3.44.0 | 2018-08-25 | `battery()` bugfix & added type, model, manufacturer, serial |
|
|
414
|
-
| 3.43.0 | 2018-08-25 | `cpuCurrentspeed()` added cpu speed for all cores |
|
|
415
|
-
| 3.42.10 | 2018-08-25 | `processes()` optimized start time parsing |
|
|
416
|
-
| 3.42.9 | 2018-08-08 | `cpuTemperature()` optimized parsing |
|
|
417
|
-
| 3.42.8 | 2018-08-03 | updated docs |
|
|
418
|
-
| 3.42.7 | 2018-08-03 | `processes()` optimized parsing ps name |
|
|
419
|
-
| 3.42.6 | 2018-08-03 | `processes()` bugfix parsing ps linux |
|
|
420
|
-
| 3.42.5 | 2018-08-03 | `processes()` bugfix parsing ps linux |
|
|
421
|
-
| 3.42.4 | 2018-07-09 | `cpuTemperature()` bugfix parsing negative values |
|
|
422
|
-
| 3.42.3 | 2018-07-05 | `services()` bugfix not finding services with capital letters |
|
|
423
|
-
| 3.42.2 | 2018-07-03 | `users()` optimized results if lack of permissions |
|
|
424
|
-
| 3.42.1 | 2018-07-03 | `versions()` bugfix git version macOS |
|
|
425
|
-
| 3.42.0 | 2018-06-01 | `processes()` added parent process PID |
|
|
426
|
-
| 3.41.4 | 2018-05-28 | windows exec WMIC path detection (windows) in try catch |
|
|
427
|
-
| 3.41.3 | 2018-05-13 | improved SunOS support `getStaticData()`, `getDynamicData()` |
|
|
428
|
-
| 3.41.2 | 2018-05-13 | bugfix `system()` and `flags()` Raspberry Pi |
|
|
429
|
-
| 3.41.1 | 2018-05-11 | updated docs |
|
|
430
|
-
| 3.41.0 | 2018-05-11 | `system()` Raspberry Pi bugfix and extended detection, added partial `SunOS` support |
|
|
431
|
-
| 3.40.1 | 2018-05-10 | bugfix `system().sku` (windows) |
|
|
432
|
-
| 3.40.0 | 2018-04-29 | extended `versions()` (php, redis, mongodb) |
|
|
433
|
-
| 3.39.0 | 2018-04-29 | added `versions().mysql` and `versions().nginx`, starting `SunOS` support (untested) |
|
|
434
|
-
| 3.38.0 | 2018-04-06 | added `battery().acconnected` |
|
|
435
|
-
| 3.37.12 | 2018-04-05 | another optimization `battery().ischarging` for macOS |
|
|
436
|
-
| 3.37.11 | 2018-04-05 | another optimization `battery().ischarging` for macOS |
|
|
437
|
-
| 3.37.10 | 2018-04-05 | `battery().ischarging` optimized for macOS |
|
|
438
|
-
| 3.37.9 | 2018-04-03 | optimized `processes()`, bugfix `networkInterfaceDefault()` |
|
|
439
|
-
| 3.37.8 | 2018-03-25 | optimized `networkDefaultInterface()` detection, fixed network `operstate` MacOS |
|
|
440
|
-
| 3.37.7 | 2018-03-13 | celebrating 4th birthday |
|
|
441
|
-
| 3.37.6 | 2018-03-12 | updated docs: fixed `diskLayout`and `mamlayout` |
|
|
442
|
-
| 3.37.5 | 2018-03-12 | added support for `ip` instead of `ifconfig` |
|
|
443
|
-
| 3.37.4 | 2018-02-22 | bugfix windows `processes()`, `disklayout()` |
|
|
444
|
-
| 3.37.3 | 2018-02-19 | added windows exec `windowsHide` option |
|
|
445
|
-
| 3.37.2 | 2018-02-15 | fixed bug `battery().percent` for macOS |
|
|
446
|
-
| 3.37.1 | 2018-02-13 | fixed bug `battery().ischarging` for macOS |
|
|
447
|
-
| 3.37.0 | 2018-02-11 | extended FreeBSD support `networkStats()` |
|
|
448
|
-
| 3.36.
|
|
449
|
-
0 | 2018-02-11 | extended FreeBSD support `networkConnections()` |
|
|
450
|
-
| 3.35.0 | 2018-02-11 | extended FreeBSD support `processLoad()` |
|
|
451
|
-
| 3.34.1 | 2018-02-11 | updated docs |
|
|
452
|
-
| 3.34.0 | 2018-02-10 | first partial FreeBSD support |
|
|
453
|
-
| 3.33.15 | 2018-01-21 | optimized OSX battery |
|
|
454
|
-
| 3.33.14 | 2018-01-17 | bugfix `diskLayout()` (Windows) |
|
|
455
|
-
| 3.33.13 | 2018-01-12 | bugfix `memLayout()` (Windows) |
|
|
456
|
-
| 3.33.12 | 2017-12-25 | fixed typos |
|
|
457
|
-
| 3.33.11 | 2017-12-17 | updated docs |
|
|
458
|
-
| 3.33.10 | 2017-12-14 | bugfix WMIC path detection (windows) blockDevice parse (Windows 7) |
|
|
459
|
-
| 3.33.9 | 2017-12-14 | bugfix WMIC path detection (windows) not found (Windows) |
|
|
460
|
-
| 3.33.8 | 2017-12-02 | bugfix diskLayout().size (OSX) |
|
|
461
|
-
| 3.33.7 | 2017-11-28 | bugfix diskLayout().size |
|
|
462
|
-
| 3.33.6 | 2017-11-16 | bugfix diskLayout().size |
|
|
463
|
-
| 3.33.5 | 2017-11-09 | code cleanup |
|
|
464
|
-
| 3.33.4 | 2017-11-09 | bugfix graphics controller win (bytes) |
|
|
465
|
-
| 3.33.3 | 2017-11-08 | bugfix cpu speed arm - type |
|
|
466
|
-
| 3.33.2 | 2017-11-08 | bugfix cpu speed arm |
|
|
467
|
-
| 3.33.1 | 2017-11-07 | improved bios and main board information |
|
|
468
|
-
| 3.33.0 | 2017-11-07 | added bios and main board information |
|
|
469
|
-
| 3.32.4 | 2017-11-02 | AMD cpu base frequencies table also for windows |
|
|
470
|
-
| 3.32.3 | 2017-11-02 | code cleanup, AMD cpu base frequencies table |
|
|
471
|
-
| 3.32.2 | 2017-11-01 | bugfix JSON.parse error `blockDevices()` |
|
|
472
|
-
| 3.32.1 | 2017-10-23 | updated docs |
|
|
473
|
-
| 3.32.0 | 2017-10-23 | extended `memLayout()` - added manufacturer |
|
|
474
|
-
| 3.31.4 | 2017-10-21 | updated `README.md` |
|
|
475
|
-
| 3.31.3 | 2017-10-21 | bugfix `graphics()`, fixed typo `README.md` |
|
|
476
|
-
| 3.31.2 | 2017-10-16 | bugfix `graphics()` vendor and model parsing linux VGA/3D |
|
|
477
|
-
| 3.31.1 | 2017-10-16 | bugfix `graphics()` vendor and model parsing linux |
|
|
478
|
-
| 3.31.0 | 2017-10-15 | extended windows support `cpuFlags()` (partially) |
|
|
479
|
-
| 3.30.6 | 2017-10-05 | updated community profile |
|
|
480
|
-
| 3.30.5 | 2017-10-05 | bugfix `users()` - parsing values on windows |
|
|
481
|
-
| 3.30.4 | 2017-10-03 | bugfix `cpuTemperature()` - parsing values on windows |
|
|
482
|
-
| 3.30.3 | 2017-10-03 | bugfix `cpuTemperature()` - max value on windows |
|
|
483
|
-
| 3.30.2 | 2017-09-26 | bugfix `networkInterfaces()` - optimized ip6 address selection |
|
|
484
|
-
| 3.30.1 | 2017-09-21 | bugfix/typo `inetChecksite()` |
|
|
485
|
-
| 3.30.0 | 2017-09-21 | extended `versions()` (added `yarn`, `gulp`, `grunt`, `tsc`, `git`) |
|
|
486
|
-
| 3.29.0 | 2017-09-15 | extended windows support `services()`, optimized `diskLayout()` (OSX), bugfixes |
|
|
487
|
-
| 3.28.0 | 2017-09-14 | extended windows support `processes()` |
|
|
488
|
-
| 3.27.1 | 2017-09-13 | updated Raspberry version detection `system()` (Pi 3, Zero) |
|
|
489
|
-
| 3.27.0 | 2017-09-12 | added raw data to `currentLoad()`, fixed `networkInterfaces()` MAC problem node 8.x |
|
|
490
|
-
| 3.26.2 | 2017-09-01 | removed redundant code |
|
|
491
|
-
| 3.26.1 | 2017-08-23 | fixed `cpu().speed` windows / AMD, updated docs |
|
|
492
|
-
| 3.26.0 | 2017-08-21 | extended `getDynamicData()` (windows), updated docs |
|
|
493
|
-
| 3.25.1 | 2017-08-07 | updated docs |
|
|
494
|
-
| 3.25.0 | 2017-08-07 | improved windows support `networkStats()`, `cpuCache()`, bug fix `getStaticData()` |
|
|
495
|
-
| 3.24.0 | 2017-08-05 | extended windows support `networkStats()`, `networkConnections()` |
|
|
496
|
-
| 3.23.7 | 2017-07-11 | bug fix `diskLayout()` |
|
|
497
|
-
| 3.23.6 | 2017-07-11 | added `cpuFlags()` to `getStaticData()`, bug fix `graphics()` (Win) |
|
|
498
|
-
| 3.23.5 | 2017-06-29 | bug fix `inetChecksite()` |
|
|
499
|
-
| 3.23.4 | 2017-06-24 | bug fix `getDynamicData(), getAllData() - mem` |
|
|
500
|
-
| 3.23.3 | 2017-06-23 | updated docs |
|
|
501
|
-
| 3.23.2 | 2017-06-23 | bug fix `battery` (windows) |
|
|
502
|
-
| 3.23.1 | 2017-06-22 | updated docs |
|
|
503
|
-
| 3.23.0 | 2017-06-22 | added `memLayout`, `diskLayout`, extended windows support (`inetChecksite`)|
|
|
504
|
-
| 3.22.0 | 2017-06-19 | extended windows support (`users`, `inetLatency`) |
|
|
505
|
-
| 3.21.0 | 2017-06-18 | extended time (timezone), extended windows support (battery, getAll...) |
|
|
506
|
-
| 3.20.1 | 2017-06-17 | updated docs |
|
|
507
|
-
| 3.20.0 | 2017-06-16 | extend WIN support (cpu, cpuCache, cpuCurrentspeed, mem, networkInterfaces, docker) |
|
|
508
|
-
| 3.19.0 | 2017-06-12 | OSX temperature now an optional dependency |
|
|
509
|
-
| 3.18.0 | 2017-05-27 | extended `cpu` info (vendor, family, model, stepping, revision, cache, speedmin/max) |
|
|
510
|
-
| 3.17.3 | 2017-04-29 | minor fix (blockDevices data array, Windows) |
|
|
511
|
-
| 3.17.2 | 2017-04-24 | minor fix (removed console.log) |
|
|
512
|
-
| 3.17.1 | 2017-04-23 | fixed bugs fsSize(win), si.processes (command), si.osinfo(win) |
|
|
513
|
-
| 3.17.0 | 2017-02-19 | windows support for some first functions, extended process list (linux)|
|
|
514
|
-
| 3.16.0 | 2017-01-19 | blockDevices: added removable attribute + fix |
|
|
515
|
-
| 3.15.1 | 2017-01-17 | minor cpuTemperature fix (OSX) |
|
|
516
|
-
| 3.15.0 | 2017-01-15 | added cpuTemperature also for OSX |
|
|
517
|
-
| 3.14.0 | 2017-01-14 | added currentLoad per cpu/core, cpu cache and cpu flags |
|
|
518
|
-
| 3.13.0 | 2016-11-23 | added shell (returns standard shell) |
|
|
519
|
-
| 3.12.0 | 2016-11-17 | refactoring and extended currentLoad |
|
|
520
|
-
| 3.11.2 | 2016-11-16 | blockDevices: improved for older lsblk versions |
|
|
521
|
-
| 3.11.1 | 2016-11-16 | fixed small bug in blockDevices |
|
|
522
|
-
| 3.11.0 | 2016-11-15 | blockDevices for OSX and extended blockDevices |
|
|
523
|
-
| 3.10.2 | 2016-11-14 | bug fix fsSize on OSX |
|
|
524
|
-
| 3.10.1 | 2016-11-14 | optimization fsStats, disksIO, networkStats |
|
|
525
|
-
| 3.10.0 | 2016-11-12 | added blockDevices, fixed fsSize, added file system type |
|
|
526
|
-
| 3.9.0 | 2016-11-11 | added MAC address to networkInterfaces, fixed currentLoad |
|
|
527
|
-
| 3.8.1 | 2016-11-04 | updated docs |
|
|
528
|
-
| 3.8.0 | 2016-11-04 | added dockerContainerProcesses |
|
|
529
|
-
| 3.7.1 | 2016-11-03 | code refactoring |
|
|
530
|
-
| 3.7.0 | 2016-11-02 | extended docker stats, and no longer relying on curl |
|
|
531
|
-
| 3.6.0 | 2016-09-14 | added versions (kernel, ssl, node, npm, pm2, ...) |
|
|
532
|
-
| 3.5.1 | 2016-09-14 | bugfix graphics info |
|
|
533
|
-
| 3.5.0 | 2016-09-14 | added graphics info (controller, display) |
|
|
534
|
-
| 3.4.4 | 2016-09-02 | tiny fixes system.model, getDefaultNetworkInterface |
|
|
535
|
-
| 3.4.3 | 2016-09-02 | tiny bug fix fsStats, disksIO OSX |
|
|
536
|
-
| 3.4.2 | 2016-09-01 | improved default network interface |
|
|
537
|
-
| 3.4.1 | 2016-08-30 | updated docs |
|
|
538
|
-
| 3.4.0 | 2016-08-30 | rewritten processes current cpu usage |
|
|
539
|
-
| 3.3.0 | 2016-08-24 | process list added to processes |
|
|
540
|
-
| 3.2.1 | 2016-08-19 | updated docs, improvement system |
|
|
541
|
-
| 3.2.0 | 2016-08-19 | added battery information |
|
|
542
|
-
| 3.1.1 | 2016-08-18 | improved system and os detection (vm, ...), bugfix disksIO |
|
|
543
|
-
| 3.1.0 | 2016-08-18 | added Docker stats |
|
|
544
|
-
| 3.0.1 | 2016-08-17 | Bug-Fix disksIO, users, updated docs |
|
|
545
|
-
| 3.0.0 | 2016-08-03 | new major version 3.0 |
|
|
546
|
-
| 2.0.5 | 2016-03-02 | changed .gitignore |
|
|
547
|
-
| 2.0.4 | 2016-02-22 | tiny correction - removed double quotes CPU brand, ... |
|
|
548
|
-
| 2.0.3 | 2016-02-22 | optimized cpuCurrentspeed |
|
|
549
|
-
| 2.0.2 | 2016-02-22 | added CoreOS identification |
|
|
550
|
-
| 2.0.1 | 2016-01-07 | minor patch |
|
|
551
|
-
| 2.0.0 | 2016-01-07 | new major version 2.0 |
|
|
552
|
-
| 1.0.7 | 2015-11-27 | fixed: si.network_speed() |
|
|
553
|
-
| 1.0.6 | 2015-09-17 | fixed: si.users() |
|
|
554
|
-
| 1.0.5 | 2015-09-14 | updated dependencies |
|
|
555
|
-
| 1.0.4 | 2015-07-18 | updated docs |
|
|
556
|
-
| 1.0.3 | 2015-07-18 | bugfix cpu cores |
|
|
557
|
-
| 1.0.2 | 2015-07-18 | bugfix cpu_currentspeed, cpu_temperature |
|
|
558
|
-
| 1.0.1 | 2015-07-18 | documentation update |
|
|
559
|
-
| 1.0.0 | 2015-07-18 | bug-fixes, version bump, published as npm component |
|
|
560
|
-
| 0.0.3 | 2014-04-14 | bug-fix (cpu_speed) |
|
|
561
|
-
| 0.0.2 | 2014-03-14 | Optimization FS-Speed & CPU current speed |
|
|
562
|
-
| 0.0.1 | 2014-03-13 | initial release |
|
|
563
|
-
|
|
564
|
-
### Major C`hanges - Version 4
|
|
565
|
-
|
|
566
|
-
**New Functions**
|
|
567
|
-
|
|
568
|
-
- `chassis()`: chassis information
|
|
569
|
-
|
|
570
|
-
**Breaking Changes**
|
|
571
|
-
|
|
572
|
-
- `networkStats()`: will provide an **array** of stats for all given interfaces. In previous versions only one interface was provided as a parameter. Pass '*' for all interfaces
|
|
573
|
-
- `networkStats()`: `rx` and `tx` changed to `rx_bytes` and `tx_bytes`
|
|
574
|
-
- `dockerContainerStats()`: will provide an **array** of stats for all given docker containers. In previous versions only one interface was provided as a parameter. Pass '*' for all docker containers
|
|
575
|
-
|
|
576
|
-
**Other Changes**
|
|
577
|
-
|
|
578
|
-
- `system()` optimized system detection (e.g. new Raspberry Pi models, ...), additional flags
|
|
579
|
-
- `system()`, `bios()`, `baseboard()` information also as non-root (linux)
|
|
580
|
-
- `graphics()` better controller and display detection, fixes
|
|
581
|
-
- `versions()` optimization, fixes
|
|
582
|
-
- `networkInterfaces()` added `operstate`, `type`, `duplex`, `mtu`, `speed`, `carrierChanges`
|
|
583
|
-
- `networkStats()` added stats for `errors`, `dropped`
|
|
584
|
-
- added TypeScript definitions
|
|
585
|
-
|
|
586
|
-
**Be aware**, that the new version 4.x is **NOT fully backward compatible** to version 3.x ...
|
|
587
|
-
### Major (breaking) Changes - Version 3
|
|
588
|
-
|
|
589
|
-
- works only with [node.js][nodejs-url] **v4.0.0** and above (using now internal ES6 promise function, arrow functions, ...)
|
|
590
|
-
- **Promises**. As you can see in the documentation, you can now also use it in a promise oriented way. But callbacks are still supported.
|
|
591
|
-
- **Async/Await**. Due to the promises support, systeminformation also works perfectly with the `async/await` pattern (available in [node.js][nodejs-url] **v7.6.0** and above). See example in the docs.
|
|
592
|
-
- `cpuCurrentspeed`: now returns an object with current minimal, maximal and average CPU frequencies of all cores.
|
|
593
|
-
- `mem`: now supports also newer versions of `free` (Version 3.3.10 and above); extended information `avaliable` (potentially available memory)
|
|
594
|
-
- `fsStats`: added information sum bytes read + write (tx) and sum transfer rate/sec (tx_sec)
|
|
595
|
-
- `networkInterfaces`: now providing one more detail: internal - true if this is an internal interface like "lo"
|
|
596
|
-
- `networkConnections`: instead of only counting sockets, you now get an array of objects with connection details for each socket (protocol, local and peer address, state)
|
|
597
|
-
- `users`: now provides an array of objects with users online including detailed session information (login date/time, ip address, terminal, command)
|
|
598
|
-
- `inetLatency`: now you can provide a host against which you want to test latency (default is 8.8.8.8)
|
|
599
|
-
- `getDynamicData`: changed order of parameters (callback - if provided - is now the last one): `getDynamicData(srv, network, callback)`
|
|
600
|
-
- `getAllData`: changed order of parameters (callback - if provided - is now the last one): `getAllData(srv, network, callback)`
|
|
601
|
-
|
|
602
|
-
New Functions
|
|
603
|
-
|
|
604
|
-
- FreeBSD support: for some basic functions (new in version 3.34 ff)
|
|
605
|
-
- `diskLayout`: returns hard disk layout (new in version 3.23)
|
|
606
|
-
- `memLayout`: returns memory chip layout (new in version 3.23)
|
|
607
|
-
- Windows support: for some basic functions (new in version 3.17 ff)
|
|
608
|
-
- `cpuCache`: returns CPU cache (L1, L2, L3) sizes (new in version 3.14)
|
|
609
|
-
- `cpuFlags`: returns CPU flags (new in version 3.14)
|
|
610
|
-
- `currentLoad.cpus`: returns current load per cpu/core in an array (new in version 3.14)
|
|
611
|
-
- `shell`: returns standard shell e.g. /bin/bash (new in version 3.13)
|
|
612
|
-
- `blockDevices`: returns array of block devices like disks, partitions, raids, roms (new in version 3.10)
|
|
613
|
-
- `dockerContainerProcesses`: returns processes for a specific docker container (new in version 3.8)
|
|
614
|
-
- `versions`: returns object of versions - kernel, ssl, node, npm, ...(new in version 3.6)
|
|
615
|
-
- `graphics`: returns arrays of graphics controllers and displays (new in version 3.5)
|
|
616
|
-
- `networkInterfaceDefault`: returns default network interface (new in version 3.4)
|
|
617
|
-
- `processes`: now returns also a process list with all process details (new in version 3.3)
|
|
618
|
-
- `battery`: retrieves battery status and charging level (new in version 3.2)
|
|
619
|
-
- `dockerContainers`: returns a list of all docker containers (new in version 3.1)
|
|
620
|
-
- `dockerContainerStats`: returns statistics for a specific docker container (new in version 3.1)
|
|
621
|
-
- `dockerAll`: returns a list of all docker containers including their stats (new in version 3.1)
|
|
622
|
-
- `disksIO`: returns overall diskIO and IOPS values for all mounted volumes (new in version 3.0)
|
|
623
|
-
|
|
624
|
-
Bug Fixes / improvements
|
|
625
|
-
|
|
626
|
-
- improvement `cpuTemperature` - works now also on Raspberry Pi
|
|
627
|
-
- bugfix `disksIO` - on OSX read and write got mixed up
|
|
628
|
-
- several bug fixes (like assess errors in `cpuCurrentspeed`, potentially incorrect results in `users`, ...)
|
|
629
|
-
- testet on even more platforms and linux distributions
|
|
630
|
-
|
|
631
|
-
**Be aware**, that the new version 3.x is **NOT fully backward compatible** to version 2.x ...
|
|
632
|
-
|
|
633
|
-
### Major (breaking) Changes - Version 2
|
|
634
|
-
|
|
635
|
-
There had been a lot of changes in version 2 of systeminformation! Here is a quick overview (for those who come from version 1):
|
|
636
|
-
|
|
637
|
-
New Functions
|
|
638
|
-
|
|
639
|
-
- `version`: returns systeminformation version (semver) of this library
|
|
640
|
-
- `system`: hardware info (manufacturer, product/model name, version, serial, uuid)
|
|
641
|
-
- `networkConnections`: number of active connections
|
|
642
|
-
- `inetLatency`: latency in ms to external resource (internet)
|
|
643
|
-
- `getStaticData`: returns on json object with static data at once (OS, CPU, Network Interfaces - they should not change until restarted)
|
|
644
|
-
- `getDynamicData`: returns on json object with all dynamic data at once (e.g. for monitoring agents)
|
|
645
|
-
- `getAllData`: returns on json object with all data (static and dynamic) at once
|
|
646
|
-
|
|
647
|
-
Renamed Functions (now all camelCase)
|
|
648
|
-
|
|
649
|
-
- `osinfo`: renamed to `osInfo`
|
|
650
|
-
- `cpu_currentspeed`: renamed to `cpuCurrentspeed`
|
|
651
|
-
- `cpu_temperature`: renamed to `cpuTemperature`
|
|
652
|
-
- `fs_size`: renamed to `fsSize`
|
|
653
|
-
- `fs_speed`: renamed to `fsStats`
|
|
654
|
-
- `network_interfaces`: renamed to `networkInterfaces`
|
|
655
|
-
- `network_speed`: renamed to `networkStats`
|
|
656
|
-
- `network_connections`: renamed to `networkConnections`
|
|
657
|
-
- `currentload`: renamed to `currentLoad`
|
|
658
|
-
- `fullload`: renamed to `fullLoad`
|
|
659
|
-
- `processload`: renamed to `processLoad`
|
|
660
|
-
- `checksite`: renamed to `inetChecksite`
|
|
661
|
-
|
|
662
|
-
Function Changes
|
|
663
|
-
|
|
664
|
-
- `cpu_temperature`/`cpuTemperature`: -1 is new default (and indicates that non sensors are installed)
|
|
665
|
-
- `cpu_temperature`/`cpuTemperature`: new result `max` which returns max temperature of all cores
|
|
666
|
-
- `cpu_currentspeed`/`cpuCurrentspeed`: now in GHz
|
|
667
|
-
- `cpu`: splitted `manufacturer` (e.g. Intel) and `brand` (e.g. Core 2 Duo)
|
|
668
|
-
- `network_speed`/`networkStats`: now better support for OS X (also support for `operstate`)
|
|
669
|
-
- `network_speed`/`networkStats`: overall received and transferred bytes (rx, tx)
|
|
670
|
-
- `mem`: now better support for OS X (also support for `swaptotal`, `swapused`, `swapfree`)
|
|
671
|
-
- `fs_size`/`fsSize`: use-values now in % (0 - 100% instead of 0 - 1)
|
|
672
|
-
- `fs_speed`/`fsStats`: now also full support for OS X
|
|
673
|
-
- `checksite`/`inetChecksite`: new result structure - see command reference
|
|
674
|
-
- `checksite`/`inetChecksite`: ms (former `response_ms`): null if not ok
|
|
675
|
-
|
|
676
|
-
Other changes
|
|
677
|
-
|
|
678
|
-
- osx-temperature-sensor: now added as an optional dependency
|
|
679
|
-
- no more external dependencies: `request` is not longer needed
|
|
680
|
-
- where possible results are now integer or float values (instead of strings) because it is easier to calculate with numbers ;-)
|
|
681
|
-
|
|
682
|
-
[nodejs-url]: https://nodejs.org/en/
|