@nexssp/os
- NEW 1.0.30+ -
os.pathWinToLinux(path)
- converts windows path to linux -> handy with WSL automations (Windows Subsystem for Linux).
Note: This function is used in the Nexss Programmer to implement Crystal Language for Windows through WSL.
Installation
npm i @nexssp/os
Usage
const os = require('@nexssp/os');
console.log(os.name());
Detect Linux
distro name and version, check if user is root, and some other info. Also works for Windows showing name as Windows
and version like 10.0.19041
Recognize different distros and Windows versions by tags.
Example:
console.log('tags(prefix)', os.tags('prFX:'));
console.log('tags(prefix)', os.tags('prFX:'));
New
- Added Amazon Linux AMI distro and package manager setup.
- function
sudo()
which contain sudo where user is not admin and nothing if it is. It helps writing installers so automatically will add sudo if needed and for example docker containers will leave it blank. eg ${sudo()}apt-get install -y somepackage
- function
replacePMByDistro()
which replaces default (apt-get install -y) to the host distribution. For example ${os.replacePMByDistro('apt-get install -y nexss')}
, will on Fedora replace with dnf install, on Ubuntu will not replace it as it is default, on Alpine it will be apk, on Oracle Linux yum install or dns install depends on your linux distribution...
Distros list
module.exports.distros = {
ALPINE: 'Alpine Linux',
AMAZON: 'Amazon Linux',
AMAZON_AMI: 'Amazon Linux AMI',
ARCH: 'Arch Linux',
CENTOS: 'CentOS Linux',
DEBIAN: 'Debian GNU/Linux',
FEDORA: 'Fedora',
MINT: 'Linux Mint',
NIXOS: 'NixOS',
ORACLE: 'Oracle Linux Server',
RHEL: 'RHEL Linux',
SUSE_LEAP: 'openSUSE Leap',
SUSE_TUMBLEWEED: 'openSUSE Tumbleweed',
UBUNTU: 'Ubuntu',
WINDOWS: 'Windows',
MACOS: 'MacOS',
};
More Examples
const os = require('@nexssp/os');
console.log('distrosList', os.distros);
console.log('isRoot: ', os.isRoot());
console.log('name: ', os.name());
console.log('get("name"): ', os.get('NAME'));
console.log('v: ', os.v());
console.log('get("VERSION_ID"): ', os.get('VERSION_ID'));
console.log('get("VERSION_IDxxx"): ', os.get('VERSION_IDxxx'));
console.log('get()', os.get());
console.log('getShell() - your OS Shell', os.getShell());
console.log('getShell(ALPINE)', os.getShell(os.distros.ALPINE));
console.log('getShell(MACOS)', os.getShell(os.distros.MACOS));
console.log('getPM(install):', os.getPM());
console.log('getPM(update):', os.getPM('update'));
console.log('getPM(uninstall):', os.getPM('uninstall'));
console.log('getPM(search):', os.getPM('search'));
console.log('tags(prefix)', os.tags('prFX:'));
console.log(`${os.sudo()}apt-get install -y mypackage`);
console.log(
`Replaces apt install/update/uninstall to the right for distribution: ${os.replacePMByDistro(
'apt-get install -y mypackage'
)}`
);
console.log('getShell() - your OS Shell', os.getShell());
console.log(
`pathWinToLinux("C:\\Users\\mapoart\\testok"):`,
os.pathWinToLinux('C:\\Users\\mapoart\\testok')
);