Node.js os.hostname() 方法
os.hostname() 方法是 os 模块的内置应用程序编程接口,用于获取操作系统的主机名。
句法:
os.hostname()
参数:此方法不接受任何参数。
返回值:此方法返回一个字符串值,指定操作系统的主机名。
以下示例说明了 Node.js 中os.hostname() 方法的使用:
示例 1:
// Node.js program to demonstrate the
// os.hostname() method
// Allocating os module
const os = require('os');
// Printing os.hostname() value
console.log(os.hostname());
输出:
gekchos_lappy
示例 2:
// Node.js program to demonstrate the
// os.hostname() method
// Allocating os module
const os = require('os');
// Printing os.hostname() value
if(os.hostname()) {
var hostname = os.hostname();
console.log("Hostname for the operating"
+ " system is " + String(hostname));
}
输出:
Hostname for the operating system is gekchos_lappy
注意:以上程序将使用node index.js
命令编译运行。
参考: https://nodejs.org/api/os.html#os_os_hostname