Where does npm install packages?

后端 未结 23 1673
梦毁少年i
梦毁少年i 2020-11-22 06:03

Can someone tell me where can I find the Node.js modules, which I installed using npm?

23条回答
  •  天涯浪人
    2020-11-22 06:34

    If you are looking for the executable that npm installed, maybe because you would like to put it in your PATH, you can simply do

    npm bin
    

    or

    npm bin -g
    

提交回复
热议问题