To list all Atom packages installed by a user, run:
apm list --packages --installed
(apm is the "Atom Package Manager")
The response will be look somethng like this:
├── [email protected]
├── [email protected]
├── [email protected] (disabled)
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
├── [email protected]
└── [email protected]
Some packages have prerequisites. For example, linter-flake needs flake8 (installed with "pip3 install flake8"). Likewise, linter-eslint needs eslint and eslint-plugin-nodejs ("npm i -g eslint eslint-plugin-nodejs"). The gui package installer will prompt for these, but apm will not. Always check the package doc before installing.