Object containing the user environment.
var ENV = require( '@stdlib/process/env' );Object containing the user environment.
var user = ENV.USER;
// returns <string>- See environ(7).
- Modifications to
ENVare local to the process in whichENVis modified. - On Windows systems, environment variables are case insensitive.
- Be careful when modifying environment variables as the environment variable object represents shared state. Accordingly, modifications affect all environment variable consumers.
var ENV = require( '@stdlib/process/env' );
console.dir( ENV );