333
schangxiang@126.com
2025-09-19 18966e02fb573c7e2bb0c6426ed792b38b910940
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# osx-release [![Build Status](https://travis-ci.org/sindresorhus/osx-release.svg?branch=master)](https://travis-ci.org/sindresorhus/osx-release)
 
> Get the name and version of a OS X release from the Darwin version.  
> Example: `13.2.0` → `{name: 'Mavericks', version: '10.9'}`
 
 
## Install
 
```sh
$ npm install --save osx-release
```
 
 
## Usage
 
```js
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 OS is used, but you can supply a custom [Darwin kernel version](http://en.wikipedia.org/wiki/Darwin_%28operating_system%29#Release_history), which is the output of [`os.release()`](http://nodejs.org/api/os.html#os_os_release).
 
 
## CLI
 
```sh
$ npm install --global osx-release
```
 
```sh
$ osx-release --help
 
  Usage
    osx-release [release]
 
  Example
    osx-release
    Mavericks 10.9
 
    osx-release 14.0.0
    Yosemite 10.10
```
 
 
## Related
 
- [os-name](https://github.com/sindresorhus/os-name) - Get the name of the current operating system. Example: `OS X Mavericks`
- [osx-version](https://github.com/sindresorhus/osx-version) - Get the OS X version of the current system. Example: `10.9.3`
- [win-release](https://github.com/sindresorhus/osx-version) - Get the name of a Windows version from the release number: `5.1.2600` → `XP`
 
 
## License
 
MIT © [Sindre Sorhus](http://sindresorhus.com)