Welcome to the Chocolatey Community Package Repository! The packages found in this section of the site are provided, maintained, and moderated by the community.
Moderation
Every version of each package undergoes a rigorous moderation process before it goes live that typically includes:
- Security, consistency, and quality checking
- Installation testing
- Virus checking through VirusTotal
- Human moderators who give final review and sign off
More detail at Security and Moderation.
Organizational Use
If you are an organization using Chocolatey, we want your experience to be fully reliable. Due to the nature of this publicly offered repository, reliability cannot be guaranteed. Packages offered here are subject to distribution rights, which means they may need to reach out further to the internet to the official locations to download files at runtime.
Fortunately, distribution rights do not apply for internal use. With any edition of Chocolatey (including the free open source edition), you can host your own packages and cache or internalize existing community packages.
Disclaimer
Your use of the packages on this site means you understand they are not supported or guaranteed in any way. Learn more...
- Passing
- Failing
- Pending
- Unknown / Exempted

Downloads:
33,819
Downloads of v 0.33.6:
252
Last Update:
10 Oct 2015
Package Maintainer(s):
Software Author(s):
- GitHub Inc
Tags:
atom web development builder- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download

Electron
This is not the latest version of Electron available.
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
33,819
Downloads of v 0.33.6:
252
Maintainer(s):
Software Author(s):
- GitHub Inc
Edit Package
To edit the metadata for a package, please upload an updated version of the package.
Chocolatey's Community Package Repository currently does not allow updating package metadata on the website. This helps ensure that the package itself (and the source used to build the package) remains the one true source of package metadata.
This does require that you increment the package version.
Electron 0.33.6
This is not the latest version of Electron available.
All Checks are Unknown
2 Test of Unknown Status
Validation Testing Unknown
Verification Testing Unknown
To install Electron, run the following command from the command line or from PowerShell:
To upgrade Electron, run the following command from the command line or from PowerShell:
To uninstall Electron, run the following command from the command line or from PowerShell:
NOTE: This applies to both open source and commercial editions of Chocolatey.
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
- Download the Package Download
- Follow manual internalization instructions
-
Package Internalizer (C4B)
- Run
choco download electron --internalize --version=0.33.6 --source=https://community.chocolatey.org/api/v2
(additional options) - Run
choco push --source="'http://internal/odata/repo'"
for package and dependencies - Automate package internalization
- Run
3. Enter your internal repository url
(this should look similar to https://community.chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade electron -y --source="'STEP 3 URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade electron -y --source="'STEP 3 URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Ensure electron installed
win_chocolatey:
name: electron
state: present
version: 0.33.6
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'electron' do
action :install
version '0.33.6'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: electron,
Version: 0.33.6,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller electron
{
Name = 'electron'
Ensure = 'Present'
Version = '0.33.6'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'electron':
provider => 'chocolatey',
ensure => '0.33.6',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install electron version="0.33.6" source="STEP 3 URL"
See docs at https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.chocolatey.html.
5. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 05 Nov 2015.
Electron, formerly Atom Shell, framework lets you write cross-platform desktop applications using JavaScript, HTML and CSS. It is based on io.js and Chromium and is used in the Atom editor.
With Electron, creating a desktop application for your company or idea is easy. Initially developed for GitHub's Atom editor, Electron has since been used to create applications by companies like Microsoft, Facebook, Slack, and Docker.
Documentation
Community
$packageName = 'electron'
$url = 'https://github.com//atom/electron/releases/download/v0.33.6/electron-v0.33.6-win32-ia32.zip'
$checksum = 'e5d510b2c07ac395ceda1563fbba7937'
$checksumType = 'md5'
$url64 = 'https://github.com//atom/electron/releases/download/v0.33.6/electron-v0.33.6-win32-x64.zip'
$checksum64 = 'e6de364be7733af2cc1c55480261b54a'
$checksumType64 = 'md5'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
Install-ChocolateyZipPackage -PackageName "$packageName" `
-Url "$url" `
-UnzipLocation "$toolsDir" `
-Url64bit "$url64" `
-Checksum "$checksum" `
-ChecksumType "$checksumType" `
-Checksum64 "$checksum64" `
-ChecksumType64 "$checksumType64"
Log in or click on link to see number of positives.
- xinput1_3.dll (8d540d484ea4) - ## / 62
- msvcp120.dll (2abf0aab5a3c) - ## / 67
- msvcr120.dll (ad32240bb1de) - ## / 68
- msvcp120.dll (87c42ca15547) - ## / 71
- msvcr120.dll (86e39b5995af) - ## / 71
- vccorlib120.dll (9c9d4e421c55) - ## / 64
- D3Dcompiler_47.dll (e994847e01a6) - ## / 68
- vccorlib120.dll (602add77cbd8) - ## / 66
- xinput1_3.dll (756cad002e15) - ## / 66
- D3Dcompiler_47.dll (efbdbbcd0d95) - ## / 66
- libEGL.dll (ef9df2880f70) - ## / 54
- libGLESv2.dll (4ff120bbff94) - ## / 54
- libEGL.dll (4eb0a89ed332) - ## / 56
- libGLESv2.dll (898e320dd714) - ## / 55
- pdf.dll (68483adf6ee0) - ## / 56
- pdf.dll (6674fa428c32) - ## / 56
- electron.0.33.6.nupkg (27591db1985c) - ## / 57
- electron.exe (e3ee1e91282f) - ## / 57
- node.dll (0f2cf1f3b162) - ## / 54
- electron.exe (9c0a285dde56) - ## / 57
- node.dll (58038144b9c3) - ## / 54
- electron-v0.33.6-win32-x64.zip (22ea2a234062) - ## / 57
- electron-v0.33.6-win32-ia32.zip (e4964188607f) - ## / 57
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Version | Downloads | Last Updated | Status |
---|---|---|---|
Electron 12.0.2 | 249 | Wednesday, March 24, 2021 | Approved |
Electron 12.0.1 | 236 | Thursday, March 11, 2021 | Approved |
Electron 12.0.0 | 193 | Tuesday, March 2, 2021 | Approved |
Electron 11.2.3 | 358 | Saturday, February 6, 2021 | Approved |
Electron 11.2.2 | 102 | Wednesday, February 3, 2021 | Approved |
Electron 11.2.1 | 223 | Saturday, January 23, 2021 | Approved |
Electron 11.2.0 | 220 | Wednesday, January 13, 2021 | Approved |
Electron 11.1.1 | 166 | Tuesday, December 22, 2020 | Approved |
Electron 11.0.3 | 213 | Wednesday, November 25, 2020 | Approved |
Electron 11.0.2 | 87 | Friday, November 20, 2020 | Approved |
Electron 11.0.0 | 81 | Tuesday, November 17, 2020 | Approved |
Electron 10.1.5 | 170 | Saturday, October 24, 2020 | Approved |
Electron 10.1.4 | 93 | Tuesday, October 20, 2020 | Approved |
Electron 10.1.3 | 168 | Tuesday, September 29, 2020 | Approved |
Electron 10.1.1 | 200 | Tuesday, September 1, 2020 | Approved |
Electron 10.1.0 | 81 | Friday, August 28, 2020 | Approved |
Electron 10.0.1 | 62 | Thursday, August 27, 2020 | Approved |
Electron 10.0.0 | 75 | Tuesday, August 25, 2020 | Approved |
Electron 9.2.1 | 97 | Wednesday, August 19, 2020 | Approved |
Electron 9.2.0 | 147 | Wednesday, August 5, 2020 | Approved |
Electron 9.1.2 | 93 | Wednesday, July 29, 2020 | Approved |
Electron 9.1.1 | 101 | Tuesday, July 21, 2020 | Approved |
Electron 9.1.0 | 114 | Tuesday, July 7, 2020 | Approved |
Electron 9.0.5 | 34 | Tuesday, June 23, 2020 | Approved |
Electron 8.4.0 | 43 | Sunday, July 12, 2020 | Approved |
Electron 8.3.3 | 141 | Friday, June 19, 2020 | Approved |
Electron 1.8.4 | 2241 | Friday, March 23, 2018 | Approved |
Electron 1.8.2 | 445 | Wednesday, February 7, 2018 | Approved |
Electron 1.7.11 | 360 | Monday, January 22, 2018 | Approved |
Electron 1.7.10 | 405 | Monday, December 18, 2017 | Approved |
Electron 1.7.5 | 707 | Friday, August 11, 2017 | Approved |
Electron 1.6.17 | 184 | Wednesday, January 31, 2018 | Approved |
Electron 1.6.16 | 214 | Tuesday, January 23, 2018 | Approved |
Electron 1.6.11 | 494 | Sunday, June 18, 2017 | Approved |
Electron 1.6.10 | 404 | Thursday, May 25, 2017 | Approved |
Electron 1.6.8 | 353 | Wednesday, May 17, 2017 | Approved |
Electron 1.6.2 | 508 | Wednesday, March 8, 2017 | Approved |
Electron 1.6.1 | 330 | Thursday, March 2, 2017 | Approved |
Electron 1.4.16 | 305 | Wednesday, April 5, 2017 | Approved |
Electron 1.4.15 | 466 | Friday, January 20, 2017 | Approved |
Electron 1.4.14 | 327 | Wednesday, January 11, 2017 | Approved |
Electron 1.4.13 | 399 | Tuesday, December 20, 2016 | Approved |
Electron 1.4.12 | 357 | Saturday, December 10, 2016 | Approved |
Electron 1.4.10 | 332 | Tuesday, November 29, 2016 | Approved |
Electron 1.4.6 | 393 | Thursday, November 10, 2016 | Approved |
Electron 1.4.5 | 333 | Wednesday, November 2, 2016 | Approved |
Electron 1.3.15 | 287 | Friday, April 21, 2017 | Approved |
Electron 1.3.14 | 289 | Wednesday, March 15, 2017 | Approved |
Electron 1.3.9 | 286 | Wednesday, November 16, 2016 | Approved |
Electron 1.3.8 | 390 | Thursday, October 20, 2016 | Approved |
Electron 1.3.3 | 484 | Wednesday, August 10, 2016 | Approved |
Electron 1.3.2 | 371 | Wednesday, August 3, 2016 | Approved |
Electron 1.3.1 | 336 | Wednesday, July 27, 2016 | Approved |
Electron 1.3.0 | 329 | Monday, July 25, 2016 | Approved |
Electron 1.2.8 | 319 | Thursday, July 21, 2016 | Approved |
Electron 1.2.7 | 322 | Wednesday, July 20, 2016 | Approved |
Electron 1.2.6 | 308 | Wednesday, July 6, 2016 | Approved |
Electron 1.2.5 | 286 | Thursday, June 23, 2016 | Approved |
Electron 1.2.3 | 303 | Thursday, June 16, 2016 | Approved |
Electron 1.2.2 | 340 | Wednesday, June 8, 2016 | Approved |
Electron 1.2.1 | 333 | Wednesday, June 1, 2016 | Approved |
Electron 1.2.0 | 321 | Friday, May 27, 2016 | Approved |
Electron 1.1.1 | 306 | Friday, May 20, 2016 | Approved |
Electron 1.1.0 | 331 | Saturday, May 14, 2016 | Approved |
Electron 1.0.2 | 313 | Friday, May 13, 2016 | Approved |
Electron 1.0.1 | 313 | Wednesday, May 11, 2016 | Approved |
Electron 1.0.0 | 287 | Wednesday, May 11, 2016 | Approved |
Electron 0.37.8 | 371 | Friday, April 29, 2016 | Approved |
Electron 0.37.7 | 270 | Friday, April 22, 2016 | Approved |
Electron 0.37.6 | 301 | Friday, April 15, 2016 | Approved |
Electron 0.37.5 | 303 | Monday, April 11, 2016 | Approved |
Electron 0.37.3 | 305 | Sunday, March 27, 2016 | Approved |
Electron 0.37.2.20160315 | 243 | Tuesday, March 15, 2016 | Approved |
Electron 0.37.1 | 257 | Sunday, March 13, 2016 | Approved |
Electron 0.37.0 | 279 | Saturday, March 12, 2016 | Approved |
Electron 0.36.11 | 347 | Friday, March 11, 2016 | Approved |
Electron 0.36.10 | 309 | Saturday, March 5, 2016 | Approved |
Electron 0.36.9 | 299 | Friday, February 26, 2016 | Approved |
Electron 0.36.8 | 320 | Friday, February 19, 2016 | Approved |
Electron 0.36.7 | 340 | Monday, February 1, 2016 | Approved |
Electron 0.36.4 | 307 | Friday, January 15, 2016 | Approved |
Electron 0.36.3 | 265 | Friday, January 8, 2016 | Approved |
Electron 0.36.2 | 304 | Friday, December 25, 2015 | Approved |
Electron 0.36.1 | 281 | Friday, December 18, 2015 | Approved |
Electron 0.36.0 | 295 | Friday, December 11, 2015 | Approved |
Electron 0.35.4.20151206 | 278 | Sunday, December 6, 2015 | Approved |
Electron 0.35.4 | 284 | Friday, December 4, 2015 | Approved |
Electron 0.35.2 | 296 | Friday, November 27, 2015 | Approved |
Electron 0.35.1 | 288 | Friday, November 20, 2015 | Approved |
Electron 0.35.0 | 253 | Monday, November 16, 2015 | Approved |
Electron 0.34.3 | 314 | Saturday, November 7, 2015 | Approved |
Electron 0.34.2 | 273 | Friday, October 30, 2015 | Approved |
Electron 0.34.1 | 288 | Friday, October 23, 2015 | Approved |
Electron 0.34.0 | 277 | Sunday, October 18, 2015 | Approved |
Electron 0.33.9 | 251 | Friday, October 16, 2015 | Approved |
Electron 0.33.8 | 279 | Wednesday, October 14, 2015 | Approved |
Electron 0.33.7 | 290 | Sunday, October 11, 2015 | Approved |
Electron 0.33.6 | 252 | Saturday, October 10, 2015 | Approved |
Electron 0.33.5 | 278 | Monday, October 5, 2015 | Approved |
Electron 0.33.4 | 281 | Friday, October 2, 2015 | Approved |
Electron 0.33.3 | 283 | Tuesday, September 29, 2015 | Approved |
Electron 0.33.0 | 292 | Thursday, September 17, 2015 | Approved |
Electron 0.32.3 | 285 | Tuesday, September 15, 2015 | Approved |
Electron 0.32.2 | 294 | Friday, September 11, 2015 | Approved |
Electron 0.31.2 | 283 | Wednesday, September 2, 2015 | Approved |
Electron 0.31.1 | 257 | Friday, August 28, 2015 | Approved |
Electron 0.31.0 | 294 | Friday, August 21, 2015 | Approved |
Electron 0.30.6 | 271 | Wednesday, August 26, 2015 | Approved |
Electron 0.30.5 | 262 | Friday, August 21, 2015 | Approved |
Electron 0.30.4 | 261 | Tuesday, August 11, 2015 | Approved |
Electron 0.30.2 | 272 | Thursday, July 30, 2015 | Approved |
Electron 0.30.1 | 325 | Saturday, July 25, 2015 | Approved |
Electron 0.30.0 | 277 | Wednesday, July 22, 2015 | Approved |
Electron 0.29.2 | 324 | Wednesday, July 8, 2015 | Approved |
© 2014 GitHub Inc
This package has no dependencies.
Ground Rules:
- This discussion is only about Electron and the Electron package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Electron, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.