|
|
пре 7 година | |
|---|---|---|
| .. | ||
| index.js | пре 8 година | |
| license | пре 8 година | |
| package.json | пре 7 година | |
| readme.md | пре 8 година | |
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