time-to-botec/js/node_modules/@stdlib/process/env/README.md
NunoSempere b6addc7f05 feat: add the node modules
Necessary in order to clearly see the squiggle hotwiring.
2022-12-03 12:44:49 +00:00

1.7 KiB

ENV

Object containing the user environment.

Usage

var ENV = require( '@stdlib/process/env' );

ENV

Object containing the user environment.

var user = ENV.USER;
// returns <string>

Notes

  • See environ(7).
  • Modifications to ENV are local to the process in which ENV is modified.
  • On Windows systems, environment variables are case insensitive.
  • In browser environments, ENV is an empty object.
  • Be careful when modifying environment variables as the environment variable object represents shared state. Accordingly, modifications affect all environment variable consumers.

Examples

var ENV = require( '@stdlib/process/env' );

console.dir( ENV );