macos-release
TypeScript icon, indicating that this package has built-in type declarations

3.3.0 • Public • Published

macos-release

Get the name and version of a macOS release from the Darwin version
Example: 13.2.0{name: 'Mavericks', version: '10.9'}

Install

npm install macos-release

Usage

import os from 'node:os';
import macosRelease from 'macos-release';

// On a macOS Sierra system

macosRelease();
//=> {name: 'Sierra', version: '10.12'}

os.release();
//=> 13.2.0
// This is the Darwin kernel version

macosRelease(os.release());
//=> {name: 'Sierra', version: '10.12'}

macosRelease('14.0.0');
//=> {name: 'Yosemite', version: '10.10'}

macosRelease('20.0.0');
//=> {name: 'Big Sur', version: '11'}

API

macosRelease(release?)

release

Type: string

By default, the current operating system is used, but you can supply a custom Darwin kernel version, which is the output of os.release().

Related

  • os-name - Get the name of the current operating system. Example: macOS Sierra
  • macos-version - Get the macOS version of the current system. Example: 10.9.3
  • windows-release - Get the name of a Windows version from the release number: 5.1.2600XP

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
2.5.11,275,071version-2
3.3.0299,862latest

Version History

VersionDownloads (Last 7 Days)Published
3.3.0299,862
3.2.0269,316
2.5.11,275,071
3.1.0107,475
3.0.175,663
3.0.021
2.5.0474,912
2.4.1171,332
2.4.019,479
2.3.0399,322
2.2.030,671
2.1.05,561
2.0.027,174
1.1.0175,561
1.0.014

Package Sidebar

Install

npm i macos-release

Weekly Downloads

3,331,434

Version

3.3.0

License

MIT

Unpacked Size

5.15 kB

Total Files

5

Last publish

Collaborators

  • sindresorhus