Global npm install location on windows?

前端 未结 4 1464
北海茫月
北海茫月 2020-12-02 08:25

I\'m not 100% sure, but I believe I installed node v5 from the windows installer on both my home and office PCs.

On my home PC global installs happen under %APPDATA%

4条回答
  •  余生分开走
    2020-12-02 09:03

    These are typical npm paths if you install a package globally:

    Windows XP -             %USERPROFILE%\Application Data\npm\node_modules
    Newer Windows Versions - %AppData%\npm\node_modules
    or -                     %AppData%\roaming\npm\node_modules
    

提交回复
热议问题