node/lib/os.js

50 lines
1.3 KiB
JavaScript
Raw Normal View History

'use strict';
const binding = process.binding('os');
const util = require('util');
const isWindows = process.platform === 'win32';
2010-12-11 16:49:38 +08:00
exports.hostname = binding.getHostname;
exports.loadavg = binding.getLoadAvg;
exports.uptime = binding.getUptime;
exports.freemem = binding.getFreeMem;
exports.totalmem = binding.getTotalMem;
exports.cpus = binding.getCPUs;
exports.type = binding.getOSType;
2011-01-05 10:30:27 +08:00
exports.release = binding.getOSRelease;
exports.networkInterfaces = binding.getInterfaceAddresses;
2012-06-13 10:05:51 +08:00
2011-04-27 11:02:54 +08:00
exports.arch = function() {
return process.arch;
};
2012-06-13 10:05:51 +08:00
2011-04-27 11:02:54 +08:00
exports.platform = function() {
return process.platform;
};
exports.tmpdir = function() {
if (isWindows) {
return process.env.TEMP ||
process.env.TMP ||
(process.env.SystemRoot || process.env.windir) + '\\temp';
} else {
return process.env.TMPDIR ||
process.env.TMP ||
process.env.TEMP ||
'/tmp';
}
};
2012-06-13 10:05:51 +08:00
exports.tmpDir = exports.tmpdir;
exports.getNetworkInterfaces = util.deprecate(function() {
return exports.networkInterfaces();
}, 'getNetworkInterfaces is now called `os.networkInterfaces`.');
2012-04-12 16:29:15 +08:00
exports.EOL = isWindows ? '\r\n' : '\n';
if (binding.isBigEndian)
exports.endianness = function() { return 'BE'; };
else
exports.endianness = function() { return 'LE'; };