Dave Lee
Dave Lee

Reputation: 508

node npm local install override global install

If I have node modules installed locally (in the same folder as my node app) will they override global installations of the same modules?

Upvotes: 5

Views: 4693

Answers (1)

jmar777
jmar777

Reputation: 39649

Yes. See the documentation here on module resolution. And, just to be clear, "override" here simply means that the local module is the one that will be resolved to. The global module will be left untouched, and node.js apps in other directories will still be able to use the global module.


Edit: it would probably also help to better understand how the global installs with npm work. More info on that is [here](https://nodejs.org/en/blog/npm/npm-1-0-global-vs-local-installation/).

Upvotes: 8

Related Questions