Unpacking Software Livestream

Join our monthly Unpacking Software livestream to hear about the latest news, chat and opinion on packaging, software deployment and lifecycle management!

Learn More

Chocolatey Product Spotlight

Join the Chocolatey Team on our regular monthly stream where we put a spotlight on the most recent Chocolatey product releases. You'll have a chance to have your questions answered in a live Ask Me Anything format.

Learn More

Chocolatey Coding Livestream

Join us for the Chocolatey Coding Livestream, where members of our team dive into the heart of open source development by coding live on various Chocolatey projects. Tune in to witness real-time coding, ask questions, and gain insights into the world of package management. Don't miss this opportunity to engage with our team and contribute to the future of Chocolatey!

Learn More

Calling All Chocolatiers! Whipping Up Windows Automation with Chocolatey Central Management

Webinar from
Wednesday, 17 January 2024

We are delighted to announce the release of Chocolatey Central Management v0.12.0, featuring seamless Deployment Plan creation, time-saving duplications, insightful Group Details, an upgraded Dashboard, bug fixes, user interface polishing, and refined documentation. As an added bonus we'll have members of our Solutions Engineering team on-hand to dive into some interesting ways you can leverage the new features available!

Watch On-Demand
Chocolatey Community Coffee Break

Join the Chocolatey Team as we discuss all things Community, what we do, how you can get involved and answer your Chocolatey questions.

Watch The Replays
Chocolatey and Intune Overview

Webinar Replay from
Wednesday, 30 March 2022

At Chocolatey Software we strive for simple, and teaching others. Let us teach you just how simple it could be to keep your 3rd party applications updated across your devices, all with Intune!

Watch On-Demand
Chocolatey For Business. In Azure. In One Click.

Livestream from
Thursday, 9 June 2022

Join James and Josh to show you how you can get the Chocolatey For Business recommended infrastructure and workflow, created, in Azure, in around 20 minutes.

Watch On-Demand
The Future of Chocolatey CLI

Livestream from
Thursday, 04 August 2022

Join Paul and Gary to hear more about the plans for the Chocolatey CLI in the not so distant future. We'll talk about some cool new features, long term asks from Customers and Community and how you can get involved!

Watch On-Demand
Hacktoberfest Tuesdays 2022

Livestreams from
October 2022

For Hacktoberfest, Chocolatey ran a livestream every Tuesday! Re-watch Cory, James, Gary, and Rain as they share knowledge on how to contribute to open-source projects such as Chocolatey CLI.

Watch On-Demand

Downloads:

1,320,096

Downloads of v 1.61.0-beta0:

517

Last Update:

08 Mar 2022

Package Maintainer(s):

Software Author(s):

  • GitHub Inc.

Tags:

Atom

This is a prerelease version of Atom.

  • 1
  • 2
  • 3

1.61.0-beta0 | Updated: 08 Mar 2022

Downloads:

1,320,096

Downloads of v 1.61.0-beta0:

517

Maintainer(s):

Software Author(s):

  • GitHub Inc.

Atom 1.61.0-beta0

This is a prerelease version of Atom.

Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by GitHub Inc. The inclusion of GitHub Inc. trademark(s), if any, upon this webpage is solely to identify GitHub Inc. goods or services and not for commercial purposes.

  • 1
  • 2
  • 3

This Package Contains an Exempted Check

Not All Tests Have Passed


Validation Testing Passed


Verification Testing Exemption:

The package validation is failing because of an issue with atom's installer on Windows 2012. I reported it but they won't fix it: https://github.com/atom/atom/issues/19975

Details

Scan Testing Successful:

No detections found in any package files

Details
Learn More

Deployment Method: Individual Install, Upgrade, & Uninstall

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:

>

Deployment Method:

NOTE

This applies to both open source and commercial editions of Chocolatey.

1. Enter Your Internal Repository Url

(this should look similar to https://community.chocolatey.org/api/v2/)


2. Setup Your Environment

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

3. Copy Your Script

choco upgrade atom -y --source="'INTERNAL REPO URL'" --prerelease [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="'INTERNAL REPO URL'" --prerelease
$exitCode = $LASTEXITCODE

Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
  Exit 0
}

Exit $exitCode

- name: Install atom
  win_chocolatey:
    name: atom
    version: '1.61.0-beta0'
    source: INTERNAL REPO URL
    state: present
    allow_prerelease: yes

See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.


chocolatey_package 'atom' do
  action    :install
  source   'INTERNAL REPO URL'
  version  '1.61.0-beta0'
  options  '--prerelease'
end

See docs at https://docs.chef.io/resource_chocolatey_package.html.


cChocoPackageInstaller atom
{
    Name        = "atom"
    Version     = "1.61.0-beta0"
    Source      = "INTERNAL REPO URL"
    chocoParams = "--prerelease"
}

Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.


package { 'atom':
  ensure          => '1.61.0-beta0',
  install_options => ['--prerelease'],
  provider        => 'chocolatey',
  source          => 'INTERNAL REPO URL',
}

Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.


4. If applicable - Chocolatey configuration/installation

See infrastructure management matrix for Chocolatey configuration elements and examples.

NOTE

This package is likely a meta/virtual (*) or an installer (*.install) or portable (*.portable) application package.

  • Meta/virtual (*) - has a dependency on the *.install or the *.portable package - it is provided for discoverability and for other packages to take a dependency on.
  • Portable (*.portable/*.commandline (deprecated naming convention)/*.tool (deprecated naming convention)) - usually zips or archives that require no administrative access to install.
  • Install (*.install/*.app (deprecated naming convention)) - uses native installers, usually requires administrative access to install.

Learn more about chocolatey's distinction of installed versus portable apps and/or learn about this kind of package.

Package Approved

This package was approved as a trusted package on 08 Mar 2022.

Description

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.


Log in or click on link to see number of positives.

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.

Add to Builder Version Downloads Last Updated Status
Atom 1.61.0-beta0 517 Tuesday, March 8, 2022 Approved
Atom 1.60.0-beta0 163 Tuesday, February 8, 2022 Approved
Atom 1.59.0 10892 Tuesday, February 8, 2022 Approved
Atom 1.59.0-beta0 331 Tuesday, July 27, 2021 Approved
Atom 1.58.0 27261 Tuesday, July 27, 2021 Approved
Atom 1.58.0-beta0 228 Tuesday, May 11, 2021 Approved
Atom 1.57.0 12643 Tuesday, May 11, 2021 Approved
Atom 1.57.0-beta0 217 Tuesday, April 13, 2021 Approved
Atom 1.56.0 6338 Tuesday, April 13, 2021 Approved
Atom 1.56.0-beta0 411 Wednesday, March 10, 2021 Approved
Atom 1.55.0 7485 Wednesday, March 10, 2021 Approved
Atom 1.55.0-beta0 709 Thursday, January 14, 2021 Approved
Atom 1.54.0 11228 Thursday, January 14, 2021 Approved
Atom 1.54.0-beta0 764 Tuesday, November 10, 2020 Approved
Atom 1.53.0 13795 Tuesday, November 10, 2020 Approved
Atom 1.53.0-beta0 456 Tuesday, October 13, 2020 Approved
Atom 1.52.0.20201107 1574 Saturday, November 7, 2020 Approved
Atom 1.52.0 7671 Tuesday, October 13, 2020 Approved
Atom 1.52.0-beta0 466 Wednesday, September 9, 2020 Approved
Atom 1.51.0 8952 Wednesday, September 9, 2020 Approved
Atom 1.51.0-beta0 461 Tuesday, August 11, 2020 Approved
Atom 1.50.0 8574 Tuesday, August 11, 2020 Approved
Atom 1.50.0-beta0 480 Tuesday, July 14, 2020 Approved
Atom 1.49.0 7951 Tuesday, July 14, 2020 Approved
Atom 1.49.0-beta0 515 Wednesday, June 10, 2020 Approved
Atom 1.48.0 8658 Wednesday, June 10, 2020 Approved
Atom 1.48.0-beta0 412 Tuesday, May 19, 2020 Approved
Atom 1.47.0 6894 Tuesday, May 19, 2020 Approved
Atom 1.47.0-beta0 399 Tuesday, May 5, 2020 Approved
Atom 1.46.0 4986 Tuesday, May 5, 2020 Approved
Atom 1.46.0-beta0 634 Tuesday, March 10, 2020 Approved
Atom 1.45.0 14150 Tuesday, March 10, 2020 Approved
Atom 1.45.0-beta0 365 Tuesday, February 11, 2020 Approved
Atom 1.44.0 9422 Monday, February 10, 2020 Approved
Atom 1.44.0-beta0 1225 Monday, January 20, 2020 Approved
Atom 1.43.0 12134 Wednesday, January 15, 2020 Approved
Atom 1.43.0-beta0 351 Monday, December 16, 2019 Approved
Atom 1.42.0.20191029-beta0 453 Monday, October 28, 2019 Exempted
Atom 1.41.0.20191029 27923 Monday, October 28, 2019 Approved
Atom 1.41.0-beta1 476 Tuesday, August 20, 2019 Exempted
Atom 1.41.0-beta0 304 Tuesday, August 13, 2019 Exempted
Atom 1.40.0-beta1 378 Thursday, July 25, 2019 Exempted
Atom 1.40.0-beta0 294 Tuesday, July 23, 2019 Exempted
Atom 1.39.1 37059 Thursday, July 25, 2019 Approved
Atom 1.39.0 1682 Tuesday, July 23, 2019 Approved
Atom 1.39.0-beta3 365 Tuesday, July 2, 2019 Approved
Atom 1.39.0-beta2 322 Monday, June 17, 2019 Approved
Atom 1.39.0-beta1 288 Thursday, June 13, 2019 Exempted
Atom 1.39.0-beta0 272 Tuesday, June 11, 2019 Approved
Atom 1.38.2 13929 Monday, June 17, 2019 Approved
Atom 1.38.1 2599 Thursday, June 13, 2019 Approved
Atom 1.38.0 1525 Tuesday, June 11, 2019 Approved
Atom 1.38.0-beta0 391 Tuesday, May 14, 2019 Approved
Atom 1.37.0 11427 Tuesday, May 14, 2019 Approved
Atom 1.37.0-beta1 387 Friday, April 26, 2019 Approved
Atom 1.37.0-beta0 334 Thursday, April 11, 2019 Approved
Atom 1.36.1 8418 Friday, April 26, 2019 Approved
Atom 1.36.0 6572 Thursday, April 11, 2019 Approved
Atom 1.36.0-beta2 382 Friday, March 29, 2019 Approved
Atom 1.36.0-beta1 342 Wednesday, March 13, 2019 Approved
Atom 1.36.0-beta0 297 Tuesday, March 12, 2019 Exempted
Atom 1.35.1 6757 Wednesday, March 13, 2019 Approved
Atom 1.35.0 1324 Tuesday, March 12, 2019 Approved
Atom 1.35.0-beta0 491 Wednesday, January 9, 2019 Approved
Atom 1.34.0 12957 Wednesday, January 9, 2019 Approved
Atom 1.34.0-beta1 379 Thursday, December 20, 2018 Approved
Atom 1.34.0-beta0 350 Thursday, November 29, 2018 Approved
Atom 1.33.1 4495 Thursday, December 20, 2018 Approved
Atom 1.33.0 5300 Thursday, November 29, 2018 Approved
Atom 1.33.0-beta3 301 Wednesday, November 21, 2018 Approved
Atom 1.33.0-beta2 360 Friday, November 9, 2018 Approved
Atom 1.33.0-beta1 336 Wednesday, October 31, 2018 Approved
Atom 1.33.0-beta0 376 Wednesday, October 24, 2018 Approved
Atom 1.32.2 4491 Friday, November 9, 2018 Approved
Atom 1.32.1 2750 Wednesday, October 31, 2018 Approved
Atom 1.32.0 2373 Wednesday, October 24, 2018 Approved
Atom 1.32.0-beta3 360 Saturday, October 6, 2018 Approved
Atom 1.32.0-beta2 330 Friday, October 5, 2018 Approved
Atom 1.32.0-beta1 374 Friday, September 28, 2018 Approved
Atom 1.32.0-beta0 309 Thursday, September 27, 2018 Approved
Atom 1.31.2 4211 Saturday, October 6, 2018 Approved
Atom 1.31.1 2736 Friday, September 28, 2018 Approved
Atom 1.31.0 947 Thursday, September 27, 2018 Approved
Atom 1.31.0-beta1 369 Friday, August 31, 2018 Approved
Atom 1.31.0-beta0 308 Wednesday, August 29, 2018 Approved
Atom 1.30.0 23882 Wednesday, August 29, 2018 Approved
Atom 1.30.0-beta2 388 Wednesday, August 15, 2018 Approved
Atom 1.30.0-beta1 396 Wednesday, August 1, 2018 Approved
Atom 1.30.0-beta0 329 Wednesday, August 1, 2018 Approved
Atom 1.29.0 40480 Wednesday, August 1, 2018 Approved
Atom 1.29.0-beta2 491 Saturday, July 14, 2018 Approved
Atom 1.29.0-beta1 433 Thursday, July 5, 2018 Approved
Atom 1.29.0-beta0 469 Friday, June 22, 2018 Approved
Atom 1.28.2 36856 Saturday, July 14, 2018 Approved
Atom 1.28.1 18972 Thursday, July 5, 2018 Approved
Atom 1.28.0 19860 Friday, June 22, 2018 Approved
Atom 1.28.0-beta3 463 Wednesday, June 6, 2018 Approved
Atom 1.28.0-beta2 450 Thursday, May 31, 2018 Approved
Atom 1.28.0-beta1 447 Monday, May 21, 2018 Approved
Atom 1.28.0-beta0 445 Tuesday, May 15, 2018 Approved
Atom 1.27.2 45182 Thursday, May 31, 2018 Approved
Atom 1.27.1 31501 Monday, May 21, 2018 Approved
Atom 1.27.0 9568 Tuesday, May 15, 2018 Approved
Atom 1.27.0-beta1 474 Friday, April 27, 2018 Approved
Atom 1.27.0-beta0 431 Thursday, April 19, 2018 Approved
Atom 1.26.1 29804 Friday, April 27, 2018 Approved
Atom 1.26.0 14018 Thursday, April 19, 2018 Approved
Atom 1.26.0-beta2 435 Friday, April 13, 2018 Approved
Atom 1.26.0-beta1 443 Thursday, April 5, 2018 Approved
Atom 1.26.0-beta0 500 Friday, March 16, 2018 Approved
Atom 1.25.1 22025 Thursday, April 5, 2018 Approved
Atom 1.25.0 26103 Friday, March 16, 2018 Approved
Atom 1.25.0-beta3 418 Thursday, March 8, 2018 Approved
Atom 1.25.0-beta2 480 Thursday, February 22, 2018 Approved
Atom 1.25.0-beta1 448 Tuesday, February 20, 2018 Approved
Atom 1.25.0-beta0 453 Wednesday, February 14, 2018 Approved
Atom 1.24.1 11620 Thursday, March 8, 2018 Approved
Atom 1.24.0 33057 Wednesday, February 14, 2018 Approved
Atom 1.24.0-beta3 528 Wednesday, January 10, 2018 Approved
Atom 1.24.0-beta2 492 Wednesday, January 3, 2018 Approved
Atom 1.24.0-beta1 803 Friday, December 15, 2017 Approved
Atom 1.24.0-beta0 494 Tuesday, December 12, 2017 Approved
Atom 1.23.3 44383 Wednesday, January 10, 2018 Approved
Atom 1.23.2 10017 Wednesday, January 3, 2018 Approved
Atom 1.23.1 21768 Thursday, December 14, 2017 Approved
Atom 1.23.0 3384 Tuesday, December 12, 2017 Approved
Atom 1.23.0-beta1 578 Saturday, November 18, 2017 Approved
Atom 1.23.0-beta0 513 Wednesday, November 8, 2017 Approved
Atom 1.22.1 27733 Saturday, November 18, 2017 Approved
Atom 1.22.0 14530 Wednesday, November 8, 2017 Approved
Atom 1.22.0-beta2 457 Tuesday, October 31, 2017 Approved
Atom 1.22.0-beta1 486 Saturday, October 21, 2017 Approved
Atom 1.22.0-beta0 534 Tuesday, October 3, 2017 Approved
Atom 1.21.2 9731 Tuesday, October 31, 2017 Approved
Atom 1.21.1 19300 Thursday, October 12, 2017 Approved
Atom 1.21.0 16310 Wednesday, October 4, 2017 Approved
Atom 1.21.0-beta2 549 Thursday, September 28, 2017 Approved
Atom 1.20.1 10097 Thursday, September 28, 2017 Approved
Atom 1.0.7 158847 Wednesday, August 12, 2015 Approved
Atom 0.174.1 23443 Thursday, January 15, 2015 Approved
Atom 0.174.0 662 Thursday, January 15, 2015 Approved
Atom 0.155.0 11761 Tuesday, December 9, 2014 Approved
Atom 0.154.0 1305 Tuesday, December 9, 2014 Approved
Atom 0.153.0 2327 Friday, December 5, 2014 Approved
Atom 0.152.0 3247 Monday, December 1, 2014 Approved
Atom 0.150.0 5874 Thursday, November 20, 2014 Approved
Atom 0.149.0 1441 Thursday, November 20, 2014 Approved
Atom 0.148.0 849 Wednesday, November 19, 2014 Approved
Atom 0.147.0 1856 Tuesday, November 18, 2014 Approved
Atom 0.146.0 4534 Wednesday, November 12, 2014 Approved
Atom 0.145.0 1842 Tuesday, November 11, 2014 Approved
Atom 0.144.0 2974 Saturday, November 8, 2014 Approved
Atom 0.143.0 992 Friday, November 7, 2014 Approved
Atom 0.142.0 1527 Thursday, November 6, 2014 Approved
Atom 0.141.0 4445 Thursday, October 30, 2014 Approved
Atom 0.140.0 3603 Monday, October 27, 2014 Approved
Atom 0.139.0 3847 Wednesday, October 22, 2014 Approved
Atom 0.138.0 3905 Friday, October 17, 2014 Approved
Atom 0.137.0 2521 Wednesday, October 15, 2014 Approved
Atom 0.136.0 7175 Tuesday, October 7, 2014 Approved
Atom 0.135.0 3204 Thursday, October 2, 2014 Approved
Atom 0.134.0 1545 Wednesday, October 1, 2014 Approved
Atom 0.133.0 1363 Tuesday, September 30, 2014 Approved
Atom 0.132.0 2534 Friday, September 26, 2014 Approved
Atom 0.131.0 2109 Wednesday, September 24, 2014 Approved
Atom 0.130.0 1456 Tuesday, September 23, 2014 Approved
Atom 0.129.1 3092 Wednesday, September 17, 2014 Approved
Atom 0.129.0 1313 Tuesday, September 16, 2014 Approved
Atom 0.127.0 2940 Thursday, September 11, 2014 Approved
Atom 0.126.0 1459 Wednesday, September 10, 2014 Approved
Atom 0.125.0 2944 Friday, September 5, 2014 Approved
Atom 0.124.0 4722 Tuesday, August 26, 2014 Approved
Atom 0.123.0 4834 Friday, August 15, 2014 Approved
Atom 0.122.0 1202 Thursday, August 14, 2014 Approved
Atom 0.121.0 1569 Wednesday, August 13, 2014 Approved
Atom 0.120.0 5832 Monday, July 28, 2014 Approved
Atom 0.119.0 2181 Friday, July 25, 2014 Approved
Atom 0.118.0 1211 Thursday, July 24, 2014 Approved
Atom 0.117.0 2131 Tuesday, July 22, 2014 Approved
Atom 0.116.0 744 Tuesday, July 22, 2014 Approved
Atom 0.115.0 9174 Friday, July 11, 2014 Approved
Atom 0.114.0 1011 Friday, July 11, 2014 Approved
Atom 0.113.0 6525 Tuesday, July 8, 2014 Approved
Atom 0.112.0 710 Tuesday, July 8, 2014 Approved
Atom 0.111.0 686 Tuesday, July 8, 2014 Approved
Atom 0.110.0 903 Tuesday, July 8, 2014 Approved
Atom 0.101.0 967 Thursday, June 5, 2014 Approved
Atom 0.96.1.0 832 Saturday, May 17, 2014 Approved
Atom 0.0.0.1 805 Friday, May 9, 2014 Approved

Discussion for the Atom Package

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.
comments powered by Disqus