Reputation: 2946
Environment: In a closed/offline environment. Question: I am manually copying over node_module's and one of them needs to be installed globally. What is the process to do this?
Upvotes: 0
Views: 798
Reputation: 6805
I assume that the module is on your computer in a folder.
npm install /path/to/folder/containing/package/json/ -g
Upvotes: 1