creating a .bat file with npm install command
问题 I created the following file //npminstall.bat npm install echo hello When I run the following command from Windows 10 Command Line (dos) npminstall.bat , the npm install command fires, but the echo hello doesn't fire. I tried putting a semi-color after the first line like this npm install; , but all that did was give me the help instructions of npm . How do I get the second line echo hello to fire after the npm install ? Additional Notes I have found that this also causes the same behaviour: