zoukankan      html  css  js  c++  java
  • Node安装及自定义config

    下载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: odejs ode_cache"

    npm config set prefix "D: odejsnode_global"

    -- 修改PATH.

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

    NODE_PATH 设置到D: odejs ode_global ode_modules 

    其他

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

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

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

  • 相关阅读:
    C# WebSocket 实现客户端和服务端的通信(二)
    C# WebSocket 实现客户端和服务端的通信(一)
    regsvr32 将dll写入注册表
    Dictionary 添加重复的键值对
    C# Math.Round()的银行家算法
    DataGridView 合并数据相同的行
    获取系统当前日期,分布获取年月日和时分秒
    [Err] ORA-00923: 未找到要求的 FROM 关键字
    正则表达式常用的字符类
    Spring注解作用
  • 原文地址:https://www.cnblogs.com/hijushen/p/10521806.html
Copyright © 2011-2022 走看看