I'm feeling perplexed regarding the npm installation process. Based on what I've gathered, there are several options available to me when installing modules:
- The -g option which saves modules globally
- --save-dev
- No arguments.
Could someone clarify the differences for me? For instance, if I install a module globally using the -g flag and then install it locally again, will it fetch the modules from the global location?
Furthermore, what is the significance of "--save: Package will appear in your dependencies" mean?
Which dependencies are being referred to here?