Problem scenario
You are using Linux, and you want to know what JQuery version is installed. What do you do?
Solution
JQuery is a library to work with Javascript. There are many ways to install JQuery: git, using a .tar.gz file, the YARN CLI, or the npm command.
If it was installed with npm, one way find out the version is to run one of these command:
npm view jquery versions
npm view jquery version
npm view jquery
npm info jquery
npm ls jquery
This solution was partially taken from this external page.
…
Continue reading “How Do You Find the JQuery Version from the Command Prompt of a Linux Server?”