首页 > 其他 > 详细

Node安装及自定义config

时间:2019-03-13 11:45:46      阅读:218      评论:0      收藏:0      [点我收藏+]

下载Node.js , Windows下安装一键到底, 没有什么说的. 主要是默认无法流畅使用, 包括流畅下载, 全局缓存之类. 如下是进一步设置, 包括:

- 设置淘宝镜像. 

- 增加Yarn(npm优化版?) 并更改位置.

- 调整全局缓存和全局包位置

npm config set registry " --设置淘宝源
npm config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/  --设置node-sass淘宝源
npm config set phantomjs_cdnurl  -- 设置phantomjs淘宝源
npm config set electron_mirror https://npm.taobao.org/mirrors/electron/   -- 设置electron淘宝源

--检查结果:
npm config list
npm config get registry
...

--安装Yarn
npm install -g yarn 
yarn config set registry "https://registry.npm.taobao.org" --设置淘宝源
yarn config set sass_binary_site https://npm.taobao.org/mirrors/node-sass/  --设置node-sass淘宝源
yarn config set phantomjs_cdnurl https://npm.taobao.org/mirrors/phantomjs/ -- 设置phantomjs淘宝源
yarn config set electron_mirror https://npm.taobao.org/mirrors/electron/   -- 设置electron淘宝源

yarn config list [--json]

 

 

-- 修改全局

-- 修改全局缓存目录为:

npm config set cache "D:\nodejs\npm\node_cache\"

npm config set prefix "D:\nodejs\npm\node_global\"

 

-- 修改PATH.

增加PATH如上node所在目录下  D:\nodejs\node_global\ (这个同步修改很有必要, 不然-g全局安装的脚手架如yarn, 命令无法使用)

NODE_PATH 设置到D:\nodejs\ node_global\node_modules 

 

其他

如果用命令行设置较慢, 可以直接修改node 配置文件. 配置文件"."开头的文件, 通过git bash 等linux命令行编辑.

- %home% 进入到用户目录. 然后vim .npmrc .(i 进入编辑模式, 保存完Esc退出编辑模式, 然后冒号wq 保存.)

 

 

参考网址: https://blog.csdn.net/ppwwp/article/details/80001173 

 

Node安装及自定义config

原文:https://www.cnblogs.com/hijushen/p/10521806.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!