All Projects → kevva → linux-distro

kevva / linux-distro

Licence: MIT license
Get current Linux distro

Programming Languages

javascript
184084 projects - #8 most used programming language

linux-distro Build Status

Get the current Linux distro

Install

$ npm install --save linux-distro

Usage

const linuxDistro = require('linux-distro');

linuxDistro().then(data => {
	console.log(data);
	/*
	{
		os: 'Ubuntu',
		name: 'Ubuntu 14.04 LTS',
		release: '14.04',
		code: 'trusty'
	}
	*/
});

CLI

$ npm install --global linux-distro
$ linux-distro --help

  Example
    $ linux-distro
    Ubuntu 14.04 LTS (trusty)

License

MIT © Kevin Mårtensson

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].