Skip to content

Get system free memory with TypeScript

Advertisements
  
import * as os from "os"

function getCurrentFreeMemory(): number {
    return os.freemem()
}
See also  TypeScript code snippet - How to get all the points of the circufrence python?

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.