Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
// Get information about V8's heap memory usage const v8 = require('v8'); const heapStats = v8.getHeapStatistics(); console.log('Heap size limit:', (heapStats.heap_size_limit / 1024 / 1024).toFixed(2), 'MB'); console.log('Total heap size:', (heapStats.total_heap_size / 1024 / 1024).toFixed(2), 'MB'); console.log('Used heap size:', (heapStats.used_heap_size / 1024 / 1024).toFixed(2), 'MB');
Heap size limit: 1432.00 MB Total heap size: 5.98 MB Used heap size: 2.99 MB