@liangchengj/electron-is-dev

Check if Electron is running in development

Usage no npm install needed!

<script type="module">
  import liangchengjElectronIsDev from 'https://cdn.skypack.dev/@liangchengj/electron-is-dev';
</script>

README

electron-is-dev

Check if Electron 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

import * as isDev from '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

License

MIT © Sindre Sorhus