2017-06-01 55 views
0

紗線中可能使用yarn --cache-folder [CACHE_FOLDER],npm5的替代品是什麼?如何在安裝命令中指定npm5中的緩存文件夾?

這是可能的,獨立的命令npm config set cache [CACHE_FOLDER]設置它,但我很好奇,如果有可能只通過一些參數npm install

我檢查v5.0.1 release notesnpm install docs做,但無法找到任何設置緩存文件夾

+1

可能duplicat e [如何在Windows上更改npm的緩存路徑(或完全禁用緩存)?](https://stackoverflow.com/questions/14836053/how-can-i-change-the-cache-path- for-npm-or-completely-disable-the-cache-win-win)(問題涉及Windows,但答案適用於所有平臺) –

回答

0

如回答@maybekatz(NPM工程師)on twitter有可能使用--cache說法:

npm install --cache [CACHE_FOLDER] 
相關問題