osx-release

WebJar for osx-release

License

License

MIT
GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

osx-release
Last Version

Last Version

1.1.0
Release Date

Release Date

Type

Type

jar
Description

Description

osx-release
WebJar for osx-release
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/sindresorhus/macos-release

Download osx-release

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/osx-release/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>osx-release</artifactId>
    <version>1.1.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/osx-release/
implementation 'org.webjars.npm:osx-release:1.1.0'
// https://jarcasting.com/artifacts/org.webjars.npm/osx-release/
implementation ("org.webjars.npm:osx-release:1.1.0")
'org.webjars.npm:osx-release:jar:1.1.0'
<dependency org="org.webjars.npm" name="osx-release" rev="1.1.0">
  <artifact name="osx-release" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='osx-release', version='1.1.0')
)
libraryDependencies += "org.webjars.npm" % "osx-release" % "1.1.0"
[org.webjars.npm/osx-release "1.1.0"]

Dependencies

compile (1)

Group / Artifact Type Version
org.webjars.npm : minimist jar [1.1.0,2)

Project Modules

There are no modules declared in this project.

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 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'}

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

Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.

Versions

Version
1.1.0