I have integrated npm with visual studio and I can run my project locally as it has all the required dependencies in the node_modules locally.
Now I want to publish this web app to remote server but I don't want to add all the node_modules in to the version control and eventually as a part of publish.
How can I publish my web app to the destination and then run npm install on that machine so that it fetches the node_modules based on my package.json.
Thanks