How I Can Run NPM Commands in VSCode Terminal?

Multi tool use


How I Can Run NPM Commands in VSCode Terminal?
i want to work on npm terminal in VSCode such as git and i install an extension to support NPM but didn’t work and i just got the error
'npm' is not recognized as an internal or external command,operable program or batch file.
EDIT
i’m already installed node.js , i’m just want to work in the regular command prompt rather than node.js cmd and i got errors but it worked well when i open cmd as an admin after adding 'C:Program Filesnodejs' to the path. now how i work with npm in cmd without open it as an admin ? i think it’s a permissions issue so if anyone help me solve it !
Node.js tutorial in VS Code
– Gino Mempin
59 mins ago
i’m already added it, i used to work in the node.js command prompt but i want to work in regular cmd and i face a problem. i think it is about permissions.
– Apdo Elsaed
38 mins ago
2 Answers
2
You can run npm commands in a VSCode terminal the same way you would run them in any terminal:npm <command>
npm <command>
This is assuming npm is properly installed.
Regarding the error you reported, maybe check this out:
'npm' is not recognized as internal or external command, operable program or batch file
What version do you have? It sounds like node is not installed.
Try to run npm -v
to identify the version?
npm -v
no it’s installed. i added nodejs to the Path and it worked well in regular command prompt but with the administrator privilege. how i make it worked without opening it as admin ?
– Apdo Elsaed
43 mins ago
if you run npm -v what do you get?
– Giannis Perpirakis
41 mins ago
This does not provide an answer to the question. Once you have sufficient reputation you will be able to comment on any post; instead, provide answers that don't require clarification from the asker. - From Review
– Nic3500
41 mins ago
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
Install Node.js from (nodejs.org)
– Alex Baban
1 hour ago