1 2 3 4 5 6 7 8
const os = require("node:os"); /** * Get the system info */ exports.get_sysinfo = function getSysinfo() { return `OS: ${os.type()} Arch: ${os.arch()}` }