Reputation: 111
Please see the attached image. I have installed node js. After open my git bash, if i run node -v, its give me node version but after i write npm -v, i have passed a long time, like more than 30 minute. it is giving me any output. no error or no warning, nothing. just stay like my attached image. Here is the command also-
shamim@DESKTOP-3C7P5TO MINGW64 /e/wamp64/www/vuejspractice/vue-cli-dev
$ node -v
v8.9.4
shamim@DESKTOP-3C7P5TO MINGW64 /e/wamp64/www/vuejspractice/vue-cli-dev
$ npm -v
Same result when i run this also
npm install
Passed after a long time more than 30 minutes. nothing happen.
Please someone give me a solution.
Upvotes: 6
Views: 8221
Reputation: 71
I was also facing the same issue. Later on I find out I set the npm config registry to local one, which was not getting connected.
So I used npm config delete registry
After this it was working fine
Upvotes: 0
Reputation: 41
I had the same problem, any command that starts with npm just hangs. Apparently I accidentally set up the wrong prefix in my npm. The way I solved it:
voila, it's back to what it was again.
Upvotes: 1
Reputation: 2486
Try to run npm init
first then carry on with enter
to skip the questions, make sure you have a package.json
file then try running npm -v
Upvotes: -1