Reputation: 1413
I'm developing a Node application/Azure Function app in Microsoft Azure and am having a hell of a time figuring out where and how to install Node packages. I'm on a Mac and have mostly developed the guts of the application in my local development environment. I've pasted the contents of my local JavaScript files into the Azure UI, and that's working out fine, except that I'm not sure of how to install third-party Node modules. Is there an easy way to basically get a command-line view of the project and to somehow thereby install the necessary modules via NPM?
Upvotes: 1
Views: 193
Reputation: 3875
Yes indeed! You can get a console in the portal and do an npm install. See Node version and Package Management.
Upvotes: 1