# karma-env-preprocessor

> A Karma plugin to read environment variables and make them available inside your tests.

Latest version **0.1.1** (published 2015-02-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install karma-env-preprocessor
pnpm add karma-env-preprocessor
yarn add karma-env-preprocessor
bun add karma-env-preprocessor
```

## Health

**Score 23/100 (F)** — status: abandoned.

Positive: has types package; no vulnerabilities; high quality score.

Warnings: low downloads; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.1 |
| Published | 2015-02-02 |
| First published | 2014-09-08 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | separate (@types/karma-env-preprocessor) |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 6 |
| Author | Jonathan Sokolowski |
| Maintainers | jsok |
| Keywords | karma-plugin, karma-preprocessor, environment-variables |

## Links

- npm: https://www.npmjs.com/package/karma-env-preprocessor
- Repository: https://github.com/jsok/karma-env-preprocessor
- Issues: https://github.com/jsok/karma-env-preprocessor/issues
- npm.io page: https://npm.io/package/karma-env-preprocessor

## Alternatives

- [replicas-cli](https://npm.io/package/replicas-cli.md) — 3.0K weekly downloads
- [env-contract](https://npm.io/package/env-contract.md) — 133 weekly downloads
- [@openveo/api](https://npm.io/package/@openveo/api.md) — 61 weekly downloads
- [@ryniaubenpm2/cumque-error-reiciendis](https://npm.io/package/@ryniaubenpm2/cumque-error-reiciendis.md) — 54 weekly downloads
- [ts-global-type-extra](https://npm.io/package/ts-global-type-extra.md) — 11 weekly downloads

## Recent versions

- 0.1.1 (latest) — 2015-02-02
- 0.1.0 — 2014-09-08

## README

# karma-env-preprocessor

> Preprocessor which makes environment variables available to your tests.

## Installation

The easiest way is to keep `karma-env-preprocessor` as a devDependency in your `package.json`.
```json
{
  "devDependencies": {
    "karma": "~0.10",
    "karma-env-preprocessor": "~0.1"
  }
}
```

You can simple do it by:
```bash
npm install karma-env-preprocessor --save-dev
```

## Configuration
Any files you preprocess using this plugin will be affected, e.g for all JavaScript files:
```js
// karma.conf.js
module.exports = function(config) {
  config.set({
    preprocessors: {
      '**/*.js': ['env']
    },

    envPreprocessor: [
      'PATH',
      'HOME'
    ]
  });
};
```

## How does it work ?

This preprocessor uses `process.env` to read the value of each environment variable specified in `envPreprocessor` and publishes them in the global `window.__env__`, so you can read these values in your tests.

For example, the above configuration will be served as:
```js
window.__env__ = window.__env__ || []
window.__env__['PATH'] = '/usr/sbin:/usr/bin:/sbin:/bin';
window.__env__['HOME'] = '/home/jsok';
```

----

For more information on Karma see the [homepage].


[homepage]: http://karma-runner.github.com

---
_Source: https://npm.io/package/karma-env-preprocessor · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
