blob: b950c458ec137175f0c79e7a65c304aed2ad2a2c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# electron-is-dev
> Check if [Electron](https://electronjs.org) is running in development
Useful for enabling debug features only during development.
You can use this module directly in both the main and renderer process.
## Install
```
$ npm install electron-is-dev
```
*Requires Electron 3 or later.*
## Usage
```js
const isDev = require('electron-is-dev');
if (isDev) {
console.log('Running in development');
} else {
console.log('Running in production');
}
```
You can force development mode by setting the `ELECTRON_IS_DEV` environment variable to `1`.
## Related
- [electron-util](https://github.com/sindresorhus/electron-util) - Useful utilities for developing Electron apps
- [electron-debug](https://github.com/sindresorhus/electron-debug) - Adds useful debug features to your Electron app
## License
MIT © [Sindre Sorhus](https://sindresorhus.com)
|