mirror of
https://github.com/electron/electron.git
synced 2026-01-23 22:38:18 -05:00
604 B
604 B
MemoryInfo Object
pidInteger - Process id of the process.workingSetSizeInteger - The amount of memory currently pinned to actual physical RAM.peakWorkingSetSizeInteger - The maximum amount of memory that has ever been pinned to actual physical RAM. On macOS its value will always be 0.privateBytesInteger - The amount of memory not shared by other processes, such as JS heap or HTML content.sharedBytesInteger - The amount of memory shared between processes, typically memory consumed by the Electron code itself
Note that all statistics are reported in Kilobytes.