[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[TXT]index.d.ts1985-10-26 08:15 394  
[TXT]README.md1985-10-26 08:15 645 f12eb36 documentaiton updates [كارل مبارك]
[   ]index.js1985-10-26 08:15 1.3K 
[   ]package.json2023-06-09 12:49 1.3K7375cab EXHIBTION: fix overflow ellipsis cutoff [كارل مبارك]
# std-env

[![npm](https://img.shields.io/npm/dt/std-env.svg?style=flat-square)](http://npmjs.com/package/std-env)
[![npm](https://img.shields.io/npm/v/std-env.svg?style=flat-square)](http://npmjs.com/package/std-env)

Detect running environment of the current Node.js process.

## Installation

Using yarn:

```
yarn add std-env
```

Usin npm:

```
npm i std-env
```

## Usage

```js
const env = require('std-env')

console.log(env)

/*
{
  browser: false,
  test: false,
  dev: true,
  production: false,
  debug: false,
  ci: false,
  tty: true,
  minimalCLI: false,
  windows: false,
  darwin: true,
  linux: false
}
*/
```

## License

MIT