[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[DIR]node_modules/2023-06-08 14:14 -  
[TXT]CHANGELOG.md1985-10-26 08:15 271  
[   ]LICENCE1985-10-26 08:15 1.0K 
[TXT]README.md1985-10-26 08:15 646 0fb859dc fixed mobile overflwo options [كارل مبارك]
[TXT]index.d.ts1985-10-26 08:15 394  
[   ]index.js1985-10-26 08:15 1.3K 
[   ]package.json2023-06-08 14:14 1.4K 
# 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
```

Using 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