Skip to content

node-快速刪除專案內的node_modules

發布於: at 上午12:00

分享該文章至:

01 手動

  1. rm -rf 大法
    $ rm -rf node_modules
    
  2. rmdir
    $ rmdir /s/q node_modules
    

02 套件

REF