Atom Package List Export Import

Exporting and Importing Package List in Atom

Introducing the method to export and import the list of installed packages in the Atom text editor. apm list --enabled --bare...

Shou Arisaka
1 min read
Oct 27, 2025

Introducing the method to export and import the list of installed packages in the Atom text editor.

apm list --enabled --bare > packages.txt
    # or apm list --installed --bare
apm install --packages-file packages.txt

The above commands are executed in the following steps:

  1. Get the list of installed packages with apm list --enabled --bare
  2. Redirect with > and write to packages.txt
  3. Install packages listed in packages.txt with apm install --packages-file packages.txt

Share this article

Shou Arisaka Oct 27, 2025

๐Ÿ”— Copy Links