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 initial commit taken from gitlab.lrz.de 6 years ago
..
index.js initial commit taken from gitlab.lrz.de 6 years ago
license initial commit taken from gitlab.lrz.de 6 years ago
package.json initial commit taken from gitlab.lrz.de 6 years ago
readme.md initial commit taken from gitlab.lrz.de 6 years ago

readme.md

win-release Build Status

Get the name of a Windows version from the release number: 5.1.2600XP

Install

$ npm install --save win-release

Usage

var os = require('os');
var winRelease = require('win-release');

// on a Windows XP system

winRelease();
//=> 'XP'

os.release();
//=> '5.1.2600'

winRelease(os.release());
//=> 'XP'

winRelease('4.9.3000');
//=> 'ME'

API

winRelease([release])

release

Type: string

By default the current OS is used, but you can supply a custom release number, which is the output of os.release().

  • os-name - Get the name of the current operating system
  • osx-release - Get the name and version of a OS X release from the Darwin version

License

MIT © Sindre Sorhus