This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Bernhard Blieninger
fc05486403
|
6 years ago | |
---|---|---|
.. | ||
index.js | 6 years ago | |
license | 6 years ago | |
package.json | 6 years ago | |
readme.md | 6 years ago |
readme.md
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 --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()
.
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.2600
→XP
License
MIT © Sindre Sorhus