2017-08-08 10:18:22 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								# Installation
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-02-19 17:53:29 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								To install prebuilt Electron binaries, use [`npm` ][npm].
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 10:18:22 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								The preferred method is to install Electron as a development dependency in your
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								app:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```sh
							 
						 
					
						
							
								
									
										
										
										
											2017-10-04 12:41:12 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								npm install electron --save-dev
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 10:18:22 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-02-19 17:53:29 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								See the [Electron versioning doc][versioning] for info on how to
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								manage Electron versions in your apps.
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 10:18:22 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								## Global Installation
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								You can also install the `electron`  command globally in your `$PATH` :
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```sh
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								npm install electron -g
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								## Customization
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								If you want to change the architecture that is downloaded (e.g., `ia32`  on an
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								`x64`  machine), you can use the `--arch`  flag with npm install or set the 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								`npm_config_arch`  environment variable: 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```shell
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								npm install --arch=ia32 electron
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								In addition to changing the architecture, you can also specify the platform
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 15:22:52 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								(e.g., `win32` , `linux` , etc.) using the `--platform`  flag:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```shell
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								npm install --platform=win32 electron
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 10:18:22 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								## Proxies
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-11-05 13:40:43 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								If you need to use an HTTP proxy, you need to set the `ELECTRON_GET_USE_PROXY`  variable to any
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								value, plus additional environment variables depending on your host system's Node version:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								*  [Node 10 and above][proxy-env-10] 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								*  [Before Node 10][proxy-env] 
						 
					
						
							
								
									
										
										
										
											2017-08-08 10:18:22 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								## Custom Mirrors and Caches
  
						 
					
						
							
								
									
										
										
										
											2018-02-19 17:53:29 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								During installation, the `electron`  module will call out to
							 
						 
					
						
							
								
									
										
										
										
											2019-11-05 13:40:43 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								[`@electron/get` ][electron-get] to download prebuilt binaries of
							 
						 
					
						
							
								
									
										
										
										
											2018-02-19 17:53:29 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Electron for your platform. It will do so by contacting GitHub's
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								release download page (`https://github.com/electron/electron/releases/tag/v$VERSION` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								where `$VERSION`  is the exact version of Electron).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								If you are unable to access GitHub or you need to provide a custom build, you
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								can do so by either providing a mirror or an existing cache directory.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								#### Mirror
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								You can use environment variables to override the base URL, the path at which to
							 
						 
					
						
							
								
									
										
										
										
											2019-12-16 08:16:55 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								look for Electron binaries, and the binary filename. The url used by `@electron/get` 
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								is composed as follows:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-30 13:11:56 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								```plaintext
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								url = ELECTRON_MIRROR + ELECTRON_CUSTOM_DIR + '/' + ELECTRON_CUSTOM_FILENAME
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								For instance, to use the China mirror:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-30 13:11:56 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								```plaintext
							 
						 
					
						
							
								
									
										
										
										
											2019-12-16 08:16:55 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								ELECTRON_MIRROR="https://cdn.npm.taobao.org/dist/electron/"
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								#### Cache
  
						 
					
						
							
								
									
										
										
										
											2019-12-16 08:16:55 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								Alternatively, you can override the local cache. `@electron/get`  will cache
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								downloaded binaries in a local directory to not stress your network. You can use
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								that cache folder to provide custom builds of Electron or to avoid making contact
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								with the network at all.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								*  Linux: `$XDG_CACHE_HOME`  or `~/.cache/electron/`  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								*  MacOS: `~/Library/Caches/electron/`  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								*  Windows: `$LOCALAPPDATA/electron/Cache`  or `~/AppData/Local/electron/Cache/`  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								On environments that have been using older versions of Electron, you might find the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								cache also in `~/.electron` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-12-02 21:12:51 +03:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								You can also override the local cache location by providing a `electron_config_cache` 
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								environment variable.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								The cache contains the version's official zip file as well as a checksum, stored as
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								a text file. A typical cache might look like this:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```sh
							 
						 
					
						
							
								
									
										
										
										
											2019-12-16 08:16:55 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								├── httpsgithub.comelectronelectronreleasesdownloadv1.7.9electron-v1.7.9-darwin-x64.zip
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								│   └── electron-v1.7.9-darwin-x64.zip
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								├── httpsgithub.comelectronelectronreleasesdownloadv1.7.9SHASUMS256.txt
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								│   └── SHASUMS256.txt
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								├── httpsgithub.comelectronelectronreleasesdownloadv1.8.1electron-v1.8.1-darwin-x64.zip
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								│   └── electron-v1.8.1-darwin-x64.zip
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								├── httpsgithub.comelectronelectronreleasesdownloadv1.8.1SHASUMS256.txt
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								│   └── SHASUMS256.txt
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								├── httpsgithub.comelectronelectronreleasesdownloadv1.8.2-beta.1electron-v1.8.2-beta.1-darwin-x64.zip
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								│   └── electron-v1.8.2-beta.1-darwin-x64.zip
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								├── httpsgithub.comelectronelectronreleasesdownloadv1.8.2-beta.1SHASUMS256.txt
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								│   └── SHASUMS256.txt
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								├── httpsgithub.comelectronelectronreleasesdownloadv1.8.2-beta.2electron-v1.8.2-beta.2-darwin-x64.zip
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								│   └── electron-v1.8.2-beta.2-darwin-x64.zip
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								├── httpsgithub.comelectronelectronreleasesdownloadv1.8.2-beta.2SHASUMS256.txt
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								│   └── SHASUMS256.txt
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								├── httpsgithub.comelectronelectronreleasesdownloadv1.8.2-beta.3electron-v1.8.2-beta.3-darwin-x64.zip
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								│   └── electron-v1.8.2-beta.3-darwin-x64.zip
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								└── httpsgithub.comelectronelectronreleasesdownloadv1.8.2-beta.3SHASUMS256.txt
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								    └── SHASUMS256.txt
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-05-03 19:17:15 +02:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								## Skip binary download
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								When installing the `electron`  NPM package, it automatically downloads the electron binary.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								This can sometimes be unnecessary, e.g. in a CI environment, when testing another component.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								To prevent the binary from being downloaded when you install all npm dependencies you can set the environment variable `ELECTRON_SKIP_BINARY_DOWNLOAD` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								E.g.:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```sh
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								ELECTRON_SKIP_BINARY_DOWNLOAD=1 npm install
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 10:18:22 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								## Troubleshooting
  
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								When running `npm install electron` , some users occasionally encounter
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 10:18:22 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								installation errors.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								In almost all cases, these errors are the result of network problems and not
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								actual issues with the `electron`  npm package. Errors like `ELIFECYCLE` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								`EAI_AGAIN` , `ECONNRESET` , and `ETIMEDOUT`  are all indications of such 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								network problems. The best resolution is to try switching networks, or
							 
						 
					
						
							
								
									
										
										
										
											2018-05-08 00:16:09 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								wait a bit and try installing again.
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 10:18:22 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								You can also attempt to download Electron directly from
							 
						 
					
						
							
								
									
										
										
										
											2018-02-19 17:53:29 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								[electron/electron/releases][releases]
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 10:18:22 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								if installing via `npm`  is failing.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-01-19 13:33:36 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								If installation fails with an `EACCESS`  error you may need to
							 
						 
					
						
							
								
									
										
										
										
											2018-02-19 17:53:29 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								[fix your npm permissions][npm-permissions].
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 15:22:52 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-02-19 17:53:29 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								If the above error persists, the [unsafe-perm][unsafe-perm] flag may need to be
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								set to true:
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 15:22:52 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```sh
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								sudo npm install electron --unsafe-perm=true
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-02-19 17:53:29 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								On slower networks, it may be advisable to use the `--verbose`  flag in order to
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								show download progress:
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 15:22:52 -07:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```sh
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								npm install --verbose electron
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-08-08 10:18:22 -07:00 
										
									 
								 
							 
							
								
							 
							
								 
							
							
								If you need to force a re-download of the asset and the SHASUM file set the
							 
						 
					
						
							
								
									
										
										
										
											2018-02-13 00:18:27 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								`force_no_cache`  environment variable to `true` . 
						 
					
						
							
								
									
										
										
										
											2018-02-19 17:53:29 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								[npm]: https://docs.npmjs.com
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								[versioning]: ./electron-versioning.md
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								[releases]: https://github.com/electron/electron/releases
							 
						 
					
						
							
								
									
										
										
										
											2019-11-05 13:40:43 -08:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								[proxy-env-10]: https://github.com/gajus/global-agent/blob/v2.1.5/README.md#environment -variables
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								[proxy-env]: https://github.com/np-maintain/global-tunnel/blob/v2.7.1/README.md#auto -config
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							
							
								[electron-get]: https://github.com/electron/get
							 
						 
					
						
							
								
									
										
										
										
											2018-02-19 17:53:29 -06:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								[npm-permissions]: https://docs.npmjs.com/getting-started/fixing-npm-permissions
							 
						 
					
						
							
								
									
										
										
										
											2018-05-08 00:16:09 -05:00 
										
									 
								 
							 
							
								
									
										 
								
							 
							
								 
							
							
								[unsafe-perm]: https://docs.npmjs.com/misc/config#unsafe -perm