wayne.blackmon
wayne.blackmon

Reputation: 761

Nested node-modules folder inside npm folder

I have 2 node modules folders

c:\Program Files\nodejs\node_modules\npm\node_modules

Is this normal? If not, what can I do to fix it?

Upvotes: 1

Views: 117

Answers (1)

John Franke
John Franke

Reputation: 1535

Yes this is perfectly normal. To view your whole dependency tree of global node modules you can run npm list -g.

Upvotes: 2

Related Questions