🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

osx-release

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

osx-release

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

2.0.0
latest
Source
npm
Version published
Weekly downloads
310K
12.17%
Maintainers
1
Weekly downloads
 
Created
Source

osx-release Build Status

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

Install

$ npm install --save osx-release

Usage

var os = require('os');
var osxRelease = require('osx-release');

// on an OS X Mavericks system

osxRelease();
//=> {name: 'Mavericks', version: '10.9'}

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

osxRelease(os.release());
//=> {name: 'Mavericks', version: '10.9'}

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

API

osxRelease([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

Keywords

os

FAQs

Package last updated on 19 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts