Skip to content

Files

Latest commit

78a556e · Nov 27, 2023

History

History

platform

Platform

Platform on which the current process is running.

Usage

var PLATFORM = require( '@stdlib/os/platform' );

PLATFORM

Platform on which the current process is running.

console.log( PLATFORM );
// => <string>

Examples

var PLATFORM = require( '@stdlib/os/platform' );

if ( PLATFORM === 'win32' ) {
    console.log( 'Running on a PC...' );
} else if ( PLATFORM === 'darwin' ) {
    console.log( 'Running on a Mac...' );
} else {
    console.log( 'Running on something else...' );
}

CLI

Usage

Usage: platform [options]

Options:

  -h,    --help                Print this message.
  -V,    --version             Print the package version.

Examples

$ platform

See Also

  • @stdlib/os/arch: operating system CPU architecture for which the JavaScript runtime binary was compiled.