npm、yarn设置全局安装位置和缓存位置
npm、yarn设置全局安装位置和缓存位置
npm设置
-
在nodejs文件夹下创建
node_global
和node_cache
两个文件夹。 -
设置npm全局安装位置:
npm config set prefix "D:\nodejs\node_global"
-
设置npm缓存位置:
npm config set cache "D:\nodejs\node_cache"
-
设置环境变量
-
用户变量Path, 添加
D:\nodejs\node_global
-
新建系统变量 NODE_PATH,
D:\nodejs\node_global\node_modules
-
yarn的安装、设置和注意事项
安装:
npm i -g yarn
2 查看yarn global、yarn cache目录
yarn global dir yarn cache dir
在nodejs文件夹下创建yarn文件夹,在yarn下创建 global
和 cache
文件夹。(在D盘找个位置存放就行)
yarn config set global-folder "D:\nodejs\yarn\global" yarn config cache-folder "D:\nodejs\yarn\cache"