- Node.js教程
- Node.js - 教程
- Node.js - 简介
- Node.js - 环境设置
- Node.js - 首次申请
- Node.js - REPL 终端
- Node.js - 命令行选项
- Node.js - 包管理器 (NPM)
- Node.js - 回调概念
- Node.js - 上传文件
- Node.js - 发送电子邮件
- Node.js - 活动
- Node.js - 事件循环
- Node.js - 事件发射器
- Node.js - 调试器
- Node.js - 全局对象
- Node.js - 控制台
- Node.js - 流程
- Node.js - 扩展应用程序
- Node.js - 包装
- Node.js - Express 框架
- Node.js - RESTful API
- Node.js - 缓冲器
- Node.js - Streams
- Node.js - 文件系统
- Node.js MySQL
- Node.js - MySQL 快速入门
- Node.js - MySQL创建数据库
- Node.js - MySQL创建表
- Node.js - MySQL Insert Into
- Node.js - MySQL Select From
- Node.js - MySQL Where 子句
- Node.js - MySQL Order By
- Node.js - MySQL Delete
- Node.js - MySQL Update
- Node.js - MySQL Join
- Node.js MongoDB
- Node.js - MongoDB 快速入门
- Node.js - MongoDB 创建数据库
- Node.js - MongoDB 创建集合
- Node.js - MongoDB Insert
- Node.js - MongoDB Find
- Node.js - MongoDB 查询
- Node.js - MongoDB 排序
- Node.js - MongoDB Delete
- Node.js - MongoDB Update
- Node.js - MongoDB Limit
- Node.js - MongoDB Join
- Node.js模块
- Node.js - 模块
- Node.js - 内置模块
- Node.js - utility 模块
- Node.js - Web 模块
Node.js - os.release() 方法
Node.js os.release() 方法返回一个字符串值,该值指定操作系统版本(版本)。对于 UNIX 和 LINUX 系统,该函数使用名为 uname 的命令来识别操作系统。在 Windows 上,使用 Win32 API 中名为 GetVersionExW() 的函数。
语法
以下是 Node.js os.release() 方法的语法 -
os.release()
参数
此方法不接受任何参数。
返回值
此方法返回一个字符串,该字符串指示操作系统的发布。
例在以下示例中,我们尝试在 Windows 操作系统中执行Node.js os.release() 方法。
const os = require('os');
console.log('On windows');
console.log(os.release());
输出
3.10.0-1160.76.1.el7.x86_64
注意 - 为了获得准确的结果,最好在本地执行上述代码。
如果我们编译并运行上述程序,os.release() 方法会打印当前操作系统的版本。
10.0.22621
例
在以下示例中,我们尝试在 LINUX 操作系统中执行 os.release() 方法。
const os = require('os');
console.log('On LINUX');
console.log(os.release());
输出
执行上述程序后,os.release() 方法返回当前操作系统的版本。
5.16.0-kali7-amd64
例
在此示例中,我们打印的是当前操作系统的平台和版本。
const os = require('os');
var platform = os.platform();
var release = os.release();
if(platform === 'win32'){
console.log("The platform: " + platform);
console.log("The version: " + release);
}
输出
注意 - 为了获得准确的结果,最好在本地执行上述代码。
执行上述程序后,os.platform() 方法打印操作系统平台,os.release() 方法打印操作系统版本。
The platform: win32 The version: 10.0.22621