The Asynchronous Lint Engine supports various linting (ALELint) and formatting (ALEFix) tools. Many of these are Node.js packages. Install Node.js using one of the methods below.
- Node.js
- The Chocolatey package is
nodejs
. - The Anaconda package is
nodejs
. This is the easiest option and keeps the global configuration within the Anaconda installation path.
npm install --global nodejs/package.json
npm outdated --global # list outdated packages
npm update --global # update all
Open a bash shell.
./npm_import.sh
Open a PowerShell prompt on Windows 10.
.\npm_import.ps1
After installing new Node.js packages, save the list of global packages using Bash or PowerShell.
Open a bash shell.
./npm_export.sh
Open a PowerShell prompt on Windows 10.
.\npm_export.ps1
Export import npm global packages from Stack Overflow is licensed under CC-BY-SA for non-commercial use. The CC-BY-SA Creative Commons license terms are explained in further detail by Creative Commons.
medifle proposed the bash
scripts in npm_export.sh
and npm_import.sh
. They have been altered based on
the recommendations of sepehr
and further simplified. Similar PowerShell scripts have been developed.