Really great writeup friend. I should point out that the npx ... command will still run without the initial npm -g ... installation. npx pulls the package and runs the command without installing it globally.
Yes, Paul. npx ... always pulls the package off the registry and makes sure you always use the latest version of the package which could have fixed bugs and security vulnerabilities. So, yes, it is advisable.
Samuel Akintunde
Designer & Developer
Really great writeup friend. I should point out that the
npx ...command will still run without the initialnpm -g ...installation.npxpulls the package and runs the command without installing it globally.