JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3376818
  • Score
    100M100P100Q244289F
  • License MIT

Get the name and version of a macOS release from the Darwin version

Package Exports

  • macos-release

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (macos-release) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

macos-release Build Status

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 --save macos-release

Usage

const os = require('os');
const macosRelease = require('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'}

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().

  • 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
  • win-release - Get the name of a Windows version from the release number: 5.1.2600XP

License

MIT © Sindre Sorhus