diff --git a/debian.sh b/debian.sh index c022650..9c523d5 100755 --- a/debian.sh +++ b/debian.sh @@ -318,6 +318,10 @@ install_language_toolchains() { sudo apt install nodejs fi + # Installing via https://github.com/nodesource/distributions ships with `npx`, + # but installing from native Debian repos doesn't. + npm list --global npx || sudo npm install --global npx + print_large "npm installed successfully." }