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:
1,130,104
Downloads of v 1.22.0-beta0:
346
Last Update:
03 Oct 2017
Package Maintainer(s):
Software Author(s):
- GitHub Inc.
Tags:
atom admin text editor notepad github package autocompletion- 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

Atom
This is a prerelease version of Atom.
- 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:
1,130,104
Downloads of v 1.22.0-beta0:
346
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.
All Checks are Passing
2 Passing Test
To install Atom, run the following command from the command line or from PowerShell:
To upgrade Atom, run the following command from the command line or from PowerShell:
To uninstall Atom, 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://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 atom --internalize --version=1.22.0-beta0 --source=https://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://chocolatey.org/api/v2)
4. Choose your deployment method:
choco upgrade atom -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 atom -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 atom installed
win_chocolatey:
name: atom
state: present
version: 1.22.0-beta0
source: STEP 3 URL
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
Coming early 2020! Central Managment Reporting available now! More information...
chocolatey_package 'atom' do
action :install
version '1.22.0-beta0'
source 'STEP 3 URL'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
Chocolatey::Ensure-Package
(
Name: atom,
Version: 1.22.0-beta0,
Source: STEP 3 URL
);
Requires Otter Chocolatey Extension. See docs at https://inedo.com/den/otter/chocolatey.
cChocoPackageInstaller atom
{
Name = 'atom'
Ensure = 'Present'
Version = '1.22.0-beta0'
Source = 'STEP 3 URL'
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'atom':
provider => 'chocolatey',
ensure => '1.22.0-beta0',
source => 'STEP 3 URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
salt '*' chocolatey.install atom version="1.22.0-beta0" 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.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 03 Oct 2017.
Atom is a text editor that's modern, approachable, yet hackable to the core—a tool you can customize to do anything but also use productively without ever touching a config file.
Cross-platform editing
Atom works across operating systems. You can use it on OS X, Windows, or Linux.
Built-in package manager
Search for and install new packages or start creating your own—all from within Atom.
Smart autocompletion
Atom helps you write code faster with a smart, flexible autocomplete.
File system browser
Easily browse and open a single file, a whole project, or multiple projects in one window.
Multiple panes
Split your Atom interface into multiple panes to compare and edit code across files.
Find and replace
Find, preview, and replace text as you type in a file or across all your projects.
$ErrorActionPreference = 'Stop'
# *** Automatically filled ***
$packageArgs = @{
packageName = 'atom'
fileType = 'exe'
url = 'https://github.com/atom/atom/releases/download/v1.22.0-beta0/AtomSetup.exe'
url64bit = 'https://github.com/atom/atom/releases/download/v1.22.0-beta0/AtomSetup-x64.exe'
silentArgs = '--silent'
checksum = 'aa80de969d79fbebd62bd93403ea3fa8593086f66bfe340cba473f71f4d034bb'
checksumType = 'sha256'
checksum64 = 'ebe7985fcf8ced631098a43c11d1d8e23b3ed99619de2c20929d9f13bf41961f'
checksumType64 = 'sha256'
validExitCodes = @(0)
}
# *** Automatically filled ***
Install-ChocolateyPackage @packageArgs
$ErrorActionPreference = 'Stop'
# *** Automatically filled ***
$packageName = 'atom'
$softwareName = 'atom'
$fileType = 'exe'
$silentArgs = '--uninstall -s'
$validExitCodes = @(0)
# *** Automatically filled ***
[array]$key = Get-UninstallRegistryKey -SoftwareName $softwareName
if ($key.Count -eq 1) {
$key | % {
if ($_.UninstallString) {
function Split-CommandLine {
param([string]$file)
return $file
}
# Remove quotes and trailing arguments if any
$file = Invoke-Expression "Split-CommandLine $($_.UninstallString)"
}
if ($file -and (Test-Path $file)) {
Uninstall-ChocolateyPackage -PackageName $packageName `
-FileType $fileType `
-SilentArgs $silentArgs `
-ValidExitCodes $validExitCodes `
-File $file
} else {
Write-Warning "$packageName has already been uninstalled by other means. Unknown uninstaller: $file ($($_.UninstallString))."
}
}
} elseif ($key.Count -eq 0) {
Write-Warning "$packageName has already been uninstalled by other means."
} else {
Write-Warning "$($key.Count) matches found for $packageName!"
Write-Warning "To prevent accidental data loss, no programs will be uninstalled."
Write-Warning "Please contact package maintainer the following keys were matched:"
$key | % { Write-Warning "- $($_.DisplayName)" }
}
Log in or click on link to see number of positives.
- Atom.1.22.0-beta0.nupkg (5d9b1815d11b) - ## / 61
- AtomSetup-x64.exe (ebe7985fcf8c) - ## / 65
- AtomSetup.exe (aa80de969d79) - ## / 65
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 |
---|---|---|---|
Atom 1.55.0-beta0 | 451 | Thursday, January 14, 2021 | Approved |
Atom 1.54.0 | 9758 | Thursday, January 14, 2021 | Approved |
Atom 1.54.0-beta0 | 566 | Tuesday, November 10, 2020 | Approved |
Atom 1.53.0 | 13594 | Tuesday, November 10, 2020 | Approved |
Atom 1.53.0-beta0 | 290 | Tuesday, October 13, 2020 | Approved |
Atom 1.52.0.20201107 | 1407 | Saturday, November 7, 2020 | Approved |
Atom 1.52.0 | 7466 | Tuesday, October 13, 2020 | Approved |
Atom 1.52.0-beta0 | 281 | Wednesday, September 9, 2020 | Approved |
Atom 1.51.0 | 8778 | Wednesday, September 9, 2020 | Approved |
Atom 1.51.0-beta0 | 241 | Tuesday, August 11, 2020 | Approved |
Atom 1.50.0 | 8389 | Tuesday, August 11, 2020 | Approved |
Atom 1.50.0-beta0 | 270 | Tuesday, July 14, 2020 | Approved |
Atom 1.49.0 | 7768 | Tuesday, July 14, 2020 | Approved |
Atom 1.49.0-beta0 | 304 | Wednesday, June 10, 2020 | Approved |
Atom 1.48.0 | 8457 | Wednesday, June 10, 2020 | Approved |
Atom 1.48.0-beta0 | 202 | Tuesday, May 19, 2020 | Approved |
Atom 1.47.0 | 6695 | Tuesday, May 19, 2020 | Approved |
Atom 1.47.0-beta0 | 193 | Tuesday, May 5, 2020 | Approved |
Atom 1.46.0 | 4790 | Tuesday, May 5, 2020 | Approved |
Atom 1.46.0-beta0 | 428 | Tuesday, March 10, 2020 | Approved |
Atom 1.45.0 | 13932 | Tuesday, March 10, 2020 | Approved |
Atom 1.45.0-beta0 | 160 | Tuesday, February 11, 2020 | Approved |
Atom 1.44.0 | 9197 | Monday, February 10, 2020 | Approved |
Atom 1.44.0-beta0 | 1003 | Monday, January 20, 2020 | Approved |
Atom 1.43.0 | 11963 | Wednesday, January 15, 2020 | Approved |
Atom 1.43.0-beta0 | 146 | Monday, December 16, 2019 | Approved |
Atom 1.42.0.20191029-beta0 | 226 | Monday, October 28, 2019 | Exempted |
Atom 1.41.0.20191029 | 27702 | Monday, October 28, 2019 | Approved |
Atom 1.41.0-beta1 | 281 | Tuesday, August 20, 2019 | Exempted |
Atom 1.41.0-beta0 | 111 | Tuesday, August 13, 2019 | Exempted |
Atom 1.40.0-beta1 | 148 | Thursday, July 25, 2019 | Exempted |
Atom 1.40.0-beta0 | 107 | Tuesday, July 23, 2019 | Exempted |
Atom 1.39.1 | 34837 | Thursday, July 25, 2019 | Approved |
Atom 1.39.0 | 1458 | Tuesday, July 23, 2019 | Approved |
Atom 1.39.0-beta3 | 179 | Tuesday, July 2, 2019 | Approved |
Atom 1.39.0-beta2 | 147 | Monday, June 17, 2019 | Approved |
Atom 1.39.0-beta1 | 106 | Thursday, June 13, 2019 | Exempted |
Atom 1.39.0-beta0 | 99 | Tuesday, June 11, 2019 | Approved |
Atom 1.38.2 | 13712 | Monday, June 17, 2019 | Approved |
Atom 1.38.1 | 2397 | Thursday, June 13, 2019 | Approved |
Atom 1.38.0 | 1347 | Tuesday, June 11, 2019 | Approved |
Atom 1.38.0-beta0 | 179 | Tuesday, May 14, 2019 | Approved |
Atom 1.37.0 | 11216 | Tuesday, May 14, 2019 | Approved |
Atom 1.37.0-beta1 | 176 | Friday, April 26, 2019 | Approved |
Atom 1.37.0-beta0 | 157 | Thursday, April 11, 2019 | Approved |
Atom 1.36.1 | 8228 | Friday, April 26, 2019 | Approved |
Atom 1.36.0 | 6386 | Thursday, April 11, 2019 | Approved |
Atom 1.36.0-beta2 | 204 | Friday, March 29, 2019 | Approved |
Atom 1.36.0-beta1 | 157 | Wednesday, March 13, 2019 | Approved |
Atom 1.36.0-beta0 | 108 | Tuesday, March 12, 2019 | Exempted |
Atom 1.35.1 | 6592 | Wednesday, March 13, 2019 | Approved |
Atom 1.35.0 | 1144 | Tuesday, March 12, 2019 | Approved |
Atom 1.35.0-beta0 | 303 | Wednesday, January 9, 2019 | Approved |
Atom 1.34.0 | 12740 | Wednesday, January 9, 2019 | Approved |
Atom 1.34.0-beta1 | 178 | Thursday, December 20, 2018 | Approved |
Atom 1.34.0-beta0 | 197 | Thursday, November 29, 2018 | Approved |
Atom 1.33.1 | 4350 | Thursday, December 20, 2018 | Approved |
Atom 1.33.0 | 5088 | Thursday, November 29, 2018 | Approved |
Atom 1.33.0-beta3 | 124 | Wednesday, November 21, 2018 | Approved |
Atom 1.33.0-beta2 | 187 | Friday, November 9, 2018 | Approved |
Atom 1.33.0-beta1 | 163 | Wednesday, October 31, 2018 | Approved |
Atom 1.33.0-beta0 | 166 | Wednesday, October 24, 2018 | Approved |
Atom 1.32.2 | 4298 | Friday, November 9, 2018 | Approved |
Atom 1.32.1 | 2573 | Wednesday, October 31, 2018 | Approved |
Atom 1.32.0 | 2200 | Wednesday, October 24, 2018 | Approved |
Atom 1.32.0-beta3 | 200 | Saturday, October 6, 2018 | Approved |
Atom 1.32.0-beta2 | 139 | Friday, October 5, 2018 | Approved |
Atom 1.32.0-beta1 | 161 | Friday, September 28, 2018 | Approved |
Atom 1.32.0-beta0 | 131 | Thursday, September 27, 2018 | Approved |
Atom 1.31.2 | 4035 | Saturday, October 6, 2018 | Approved |
Atom 1.31.1 | 2559 | Friday, September 28, 2018 | Approved |
Atom 1.31.0 | 782 | Thursday, September 27, 2018 | Approved |
Atom 1.31.0-beta1 | 201 | Friday, August 31, 2018 | Approved |
Atom 1.31.0-beta0 | 152 | Wednesday, August 29, 2018 | Approved |
Atom 1.30.0 | 23534 | Wednesday, August 29, 2018 | Approved |
Atom 1.30.0-beta2 | 236 | Wednesday, August 15, 2018 | Approved |
Atom 1.30.0-beta1 | 223 | Wednesday, August 1, 2018 | Approved |
Atom 1.30.0-beta0 | 156 | Wednesday, August 1, 2018 | Approved |
Atom 1.29.0 | 40244 | Wednesday, August 1, 2018 | Approved |
Atom 1.29.0-beta2 | 279 | Saturday, July 14, 2018 | Approved |
Atom 1.29.0-beta1 | 244 | Thursday, July 5, 2018 | Approved |
Atom 1.29.0-beta0 | 284 | Friday, June 22, 2018 | Approved |
Atom 1.28.2 | 36664 | Saturday, July 14, 2018 | Approved |
Atom 1.28.1 | 18783 | Thursday, July 5, 2018 | Approved |
Atom 1.28.0 | 19670 | Friday, June 22, 2018 | Approved |
Atom 1.28.0-beta3 | 267 | Wednesday, June 6, 2018 | Approved |
Atom 1.28.0-beta2 | 234 | Thursday, May 31, 2018 | Approved |
Atom 1.28.0-beta1 | 243 | Monday, May 21, 2018 | Approved |
Atom 1.28.0-beta0 | 225 | Tuesday, May 15, 2018 | Approved |
Atom 1.27.2 | 44989 | Thursday, May 31, 2018 | Approved |
Atom 1.27.1 | 31325 | Monday, May 21, 2018 | Approved |
Atom 1.27.0 | 9350 | Tuesday, May 15, 2018 | Approved |
Atom 1.27.0-beta1 | 286 | Friday, April 27, 2018 | Approved |
Atom 1.27.0-beta0 | 238 | Thursday, April 19, 2018 | Approved |
Atom 1.26.1 | 29616 | Friday, April 27, 2018 | Approved |
Atom 1.26.0 | 13858 | Thursday, April 19, 2018 | Approved |
Atom 1.26.0-beta2 | 237 | Friday, April 13, 2018 | Approved |
Atom 1.26.0-beta1 | 220 | Thursday, April 5, 2018 | Approved |
Atom 1.26.0-beta0 | 314 | Friday, March 16, 2018 | Approved |
Atom 1.25.1 | 21834 | Thursday, April 5, 2018 | Approved |
Atom 1.25.0 | 25931 | Friday, March 16, 2018 | Approved |
Atom 1.25.0-beta3 | 239 | Thursday, March 8, 2018 | Approved |
Atom 1.25.0-beta2 | 283 | Thursday, February 22, 2018 | Approved |
Atom 1.25.0-beta1 | 257 | Tuesday, February 20, 2018 | Approved |
Atom 1.25.0-beta0 | 255 | Wednesday, February 14, 2018 | Approved |
Atom 1.24.1 | 11458 | Thursday, March 8, 2018 | Approved |
Atom 1.24.0 | 32843 | Wednesday, February 14, 2018 | Approved |
Atom 1.24.0-beta3 | 331 | Wednesday, January 10, 2018 | Approved |
Atom 1.24.0-beta2 | 291 | Wednesday, January 3, 2018 | Approved |
Atom 1.24.0-beta1 | 610 | Friday, December 15, 2017 | Approved |
Atom 1.24.0-beta0 | 287 | Tuesday, December 12, 2017 | Approved |
Atom 1.23.3 | 44178 | Wednesday, January 10, 2018 | Approved |
Atom 1.23.2 | 9819 | Wednesday, January 3, 2018 | Approved |
Atom 1.23.1 | 21545 | Thursday, December 14, 2017 | Approved |
Atom 1.23.0 | 3194 | Tuesday, December 12, 2017 | Approved |
Atom 1.23.0-beta1 | 367 | Saturday, November 18, 2017 | Approved |
Atom 1.23.0-beta0 | 315 | Wednesday, November 8, 2017 | Approved |
Atom 1.22.1 | 27544 | Saturday, November 18, 2017 | Approved |
Atom 1.22.0 | 14345 | Wednesday, November 8, 2017 | Approved |
Atom 1.22.0-beta2 | 273 | Tuesday, October 31, 2017 | Approved |
Atom 1.22.0-beta1 | 311 | Saturday, October 21, 2017 | Approved |
Atom 1.22.0-beta0 | 346 | Tuesday, October 3, 2017 | Approved |
Atom 1.21.2 | 9552 | Tuesday, October 31, 2017 | Approved |
Atom 1.21.1 | 19106 | Thursday, October 12, 2017 | Approved |
Atom 1.21.0 | 16103 | Wednesday, October 4, 2017 | Approved |
Atom 1.21.0-beta2 | 323 | Thursday, September 28, 2017 | Approved |
Atom 1.20.1 | 9866 | Thursday, September 28, 2017 | Approved |
Atom 1.0.7 | 158622 | Wednesday, August 12, 2015 | Approved |
Atom 0.174.1 | 23228 | Thursday, January 15, 2015 | Approved |
Atom 0.174.0 | 465 | Thursday, January 15, 2015 | Approved |
Atom 0.155.0 | 11520 | Tuesday, December 9, 2014 | Approved |
Atom 0.154.0 | 1112 | Tuesday, December 9, 2014 | Approved |
Atom 0.153.0 | 2133 | Friday, December 5, 2014 | Approved |
Atom 0.152.0 | 3051 | Monday, December 1, 2014 | Approved |
Atom 0.150.0 | 5651 | Thursday, November 20, 2014 | Approved |
Atom 0.149.0 | 1240 | Thursday, November 20, 2014 | Approved |
Atom 0.148.0 | 661 | Wednesday, November 19, 2014 | Approved |
Atom 0.147.0 | 1647 | Tuesday, November 18, 2014 | Approved |
Atom 0.146.0 | 4323 | Wednesday, November 12, 2014 | Approved |
Atom 0.145.0 | 1648 | Tuesday, November 11, 2014 | Approved |
Atom 0.144.0 | 2773 | Saturday, November 8, 2014 | Approved |
Atom 0.143.0 | 823 | Friday, November 7, 2014 | Approved |
Atom 0.142.0 | 1341 | Thursday, November 6, 2014 | Approved |
Atom 0.141.0 | 4285 | Thursday, October 30, 2014 | Approved |
Atom 0.140.0 | 3411 | Monday, October 27, 2014 | Approved |
Atom 0.139.0 | 3669 | Wednesday, October 22, 2014 | Approved |
Atom 0.138.0 | 3731 | Friday, October 17, 2014 | Approved |
Atom 0.137.0 | 2289 | Wednesday, October 15, 2014 | Approved |
Atom 0.136.0 | 6974 | Tuesday, October 7, 2014 | Approved |
Atom 0.135.0 | 3024 | Thursday, October 2, 2014 | Approved |
Atom 0.134.0 | 1326 | Wednesday, October 1, 2014 | Approved |
Atom 0.133.0 | 1191 | Tuesday, September 30, 2014 | Approved |
Atom 0.132.0 | 2356 | Friday, September 26, 2014 | Approved |
Atom 0.131.0 | 1931 | Wednesday, September 24, 2014 | Approved |
Atom 0.130.0 | 1259 | Tuesday, September 23, 2014 | Approved |
Atom 0.129.1 | 2920 | Wednesday, September 17, 2014 | Approved |
Atom 0.129.0 | 1162 | Tuesday, September 16, 2014 | Approved |
Atom 0.127.0 | 2683 | Thursday, September 11, 2014 | Approved |
Atom 0.126.0 | 1281 | Wednesday, September 10, 2014 | Approved |
Atom 0.125.0 | 2791 | Friday, September 5, 2014 | Approved |
Atom 0.124.0 | 4550 | Tuesday, August 26, 2014 | Approved |
Atom 0.123.0 | 4671 | Friday, August 15, 2014 | Approved |
Atom 0.122.0 | 1015 | Thursday, August 14, 2014 | Approved |
Atom 0.121.0 | 1376 | Wednesday, August 13, 2014 | Approved |
Atom 0.120.0 | 5690 | Monday, July 28, 2014 | Approved |
Atom 0.119.0 | 2016 | Friday, July 25, 2014 | Approved |
Atom 0.118.0 | 1027 | Thursday, July 24, 2014 | Approved |
Atom 0.117.0 | 1956 | Tuesday, July 22, 2014 | Approved |
Atom 0.116.0 | 571 | Tuesday, July 22, 2014 | Approved |
Atom 0.115.0 | 8972 | Friday, July 11, 2014 | Approved |
Atom 0.114.0 | 822 | Friday, July 11, 2014 | Approved |
Atom 0.113.0 | 6334 | Tuesday, July 8, 2014 | Approved |
Atom 0.112.0 | 503 | Tuesday, July 8, 2014 | Approved |
Atom 0.111.0 | 494 | Tuesday, July 8, 2014 | Approved |
Atom 0.110.0 | 691 | Tuesday, July 8, 2014 | Approved |
Atom 0.101.0 | 736 | Thursday, June 5, 2014 | Approved |
Atom 0.96.1.0 | 636 | Saturday, May 17, 2014 | Approved |
Atom 0.0.0.1 | 617 | Friday, May 9, 2014 | Approved |
Copyright © GitHub Inc.
This package has no dependencies.
Ground Rules:
- This discussion is only about Atom and the Atom 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 Atom, 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.