AlithAnar / electron-is-dev

Check if Electron is running in development

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

electron-is-dev

Check if Electron is running in development

Useful for enabling debug features only during development.

This package must be used from the Electron main process.

Install

$ npm install electron-is-dev

Requires Electron 3 or later.

Usage

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.

FAQ

How is this different than app.isPackaged?

This package existed long before that property. The benefit of this package is that you can override the value using an environment variable.

Related

About

Check if Electron is running in development

License:MIT License


Languages

Language:JavaScript 78.0%Language:TypeScript 22.0%