Integrating npm with VS Code
I found that integrating npm with the IDE is a common issue faced by many beginners [including me], i had to do lot of research before figuring out the solution for it . so i want to share some of the methods to save the beginners some time . Usually the npm is installed with the node.js and you can find it in the directory (C:\Program Files\nodejs) STEP-1: If the terminal (in VScode) does not recognise the npm command , it is likely that the path of the npm is not proper. Open cmd and type : "npm -v" , this should show the npm version if it is installed and type : "where npm" this will show the npm path if it is installed properly STEP-2: if the command is not recognized by VScode terminal, edit the path : open search->go to system environment ->go to environment variables->select the path(from top list)->click edit and paste the path of the npm from the file directory-> ok and close the app , now restart the vs code , it should work. STEP-3: if th...