os.version()方法用于标识操作系统内核的版本。该信息是通过致电确定的uname
在POSIX系统上并调用RtlGetVersion()
或者GetVersionExW()
在Windows系统上。
用法:
os.version()
参数:该函数不接受任何参数。
返回值:它返回一个标识内核版本的字符串。
以下程序说明了Node.js中的os.version()方法:
范例1:在POSIX上
// Import the os module
const os = require("os");
let osVersion = os.version();
console.log("OS Version:", osVersion);
输出:
OS Version:#24~18.04.1-Ubuntu SMP Mon Jul 28 16:12:28 UTC 2019
范例2:在Windows上
// Import the os module
const os = require("os");
let osVersion = os.version();
console.log("OS Version:", osVersion);
输出:
OS Version:Windows 10 Enterprise
相关用法
- Node.js console.timeLog()用法及代码示例
- Node.js GM whitePoint()用法及代码示例
- Node.js GM channel()用法及代码示例
- Node.js GM whiteThreshold()用法及代码示例
- Node.js GM blur()用法及代码示例
- Node.js GM threshold()用法及代码示例
- Node.js GM chop()用法及代码示例
- Node.js GM thumbnail()用法及代码示例
- Node.js GM segment()用法及代码示例
- Node.js GM roll()用法及代码示例
- Node.js GM orderedDither()用法及代码示例
- Node.js GM quality()用法及代码示例
- Node.js GM transparent()用法及代码示例
- Node.js GM resize()用法及代码示例
- Node.js GM raise()用法及代码示例
注:本文由纯净天空筛选整理自sayantanm19大神的英文原创作品 Node.js | os.version() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。