sudo npm install on Windows?

-1

I use the command - sudo npm install - in mac.

What is the equivalent of this command in Windows?

runes?

I'm installing a library on my local server and need to run this command.

    
asked by anonymous 30.10.2016 / 01:56

1 answer

0

To install anything using npm on windows is as follows:

npm install <pacote> - instala o pacote localmente

npm install -g <pacote> - instala o pacote globalmente

Now this runes I believe to be Run As translating would be Run As or Run as.

I hope I have helped

    
30.10.2016 / 02:04