|
|
8 years ago | |
|---|---|---|
| .. | ||
| .npminstall.done | 8 years ago | |
| index.js | 8 years ago | |
| license | 8 years ago | |
| package.json | 8 years ago | |
| readme.md | 8 years ago | |
Check if Electron is running in development
Useful for enabling debug features only during development.
$ npm install --save electron-is-dev
const isDev = require('electron-is-dev');
if (isDev) {
console.log('Running in development');
} else {
console.log('Running in production');
}
Can be overridden by setting the ELECTRON_IS_DEV environment variable to 1.
MIT © Sindre Sorhus