I have installed jshint globally by using this command
npm install -g jshint
It installed perfectly but is showing me error while I am trying to run this
jshint app.js
then this is showing me error that jshint is not recognized as an internal or external command, operable program or batch file.
Your PATH may be missing the directory that contains the executable. I installed it locally,
I would have to call it from the
.bin
directory in thenode_modules
directory, like this:If you install it globally, with the
-g
flag, then you will be able to run it from anywhere as long as the path to your npm modules in in your path. To check the path from the command line, run:As an example, the path to my copy of the jshint executable (jshint.cmd) is located in
C:\Users\Paul\AppData\Roaming\npm
. That directory is in my path so I can run jshint from anywhere.