Craig
Craig

Reputation: 2143

Why does command prompt script close when checking npm version?

I have a file npm_version.cmd that does not pause and instead closes the window:

npm -v
@pause

I have a similar file nodejs_version.cmd that does pause and keeps the window open:

node -v
@pause

It seems npm is changing the window to npm and then back to cmd or something.

Any idea how to force this to pause?

Upvotes: 3

Views: 1973

Answers (1)

npocmaka
npocmaka

Reputation: 57262

bceause npm itself is a bat (or cmd) file.

try with :

call npm -v

you are hitting this case

Upvotes: 6

Related Questions