Absolute pathname of the executable which started the current Node.js process.
var EXEC_PATH = require( '@stdlib/process/exec-path' );
Absolute pathname of the executable which started the current Node.js process.
console.log( EXEC_PATH );
// => <string>
- In browser environments and environments other than Node.js, the absolute pathname of the executable is
null
.
var EXEC_PATH = require( '@stdlib/process/exec-path' );
if ( EXEC_PATH ) {
console.log( 'Executable: %s', EXEC_PATH );
} else {
console.log( 'Not running in Node.js.' );
}