I am confused about the npm install process. From what I understand there are some different options for me when installing modules:
- -g option that stores the modules globally
- --save-dev
- no arguments.
Can someone explain what the differences are? Specifically when I do a -g (global) and another install locally does it get the modules from where I saved it globally?
Also what does it mean by "--save: Package will appear in your dependencies."
What dependencies is it talking about?