• Windows 下安装NPM


    第一步: 下载node.js的windows版
     当前最新版本是https://nodejs.org/dist/
     
    第二步:设置环境变量
    把node.exe所在目录加入到PATH环境变量中。
    配置成功后可以在CMD中通过node --version 看到node.js对应的版本号
    C:\Users\fn>node --version
    v6.10.2

    第三步: 安装git
    直接到以下地址 https://git-scm.com/download/win 下载Git windows安装文,按照提示一步步安装即可。

    安装完成后把git安装bin目录加入PATH环境变量

    找到git安装路径中bin的位置,如:D:\Program Files\Git\bin

    找到git安装路径中git-core的位置,如:D:\Program Files\Git\libexec\git-core;

    CMD中运行 git --version 确认安装是否成功

    C:\Users\fn>git --version
    git version 1.7.7.msysgit.1

    第四步: 安装 npm
    在确保node.exe和git都在PATH环境变量中后执行以下命令:

    git config --system http.sslcainfo /bin/curl-ca-bundle.crt

    git clone --recursive git://github.com/isaacs/npm.git


    cd npm

    node cli.js install npm -gf
    下面来测试一下是否成功,一切OK开始Node.JS之旅

    D:\develop\nodejs\hello>npm install -d
    npm info it worked if it ends with ok
    npm info using npm@1.0.103
    npm info using node@v0.5.10
    npm info preinstall application-name@0.0.1
    npm info addNamed [ 'jade', '>= 0.0.1' ]
    npm info addNamed [ 'express', '2.5.0' ]

    最好设置下国内镜像要不然下载会很慢

    github npm 撞墙的解决方案。 

    github: 
    代理服务器是必须的,我用的是本地的astrill 
    给curl设置代理 
    export http_proxy="127.0.0.1:3213" 
    export https_proxy="127.0.0.1:3213" 
    ok了 

    npm: 
    设置国内镜像:

      npm config set registry http://registry.npmjs.vitecho.com

      npm config set registry https://registry.npmmirror.com 
     

    注意:淘宝镜像过期了!
    其实,早在 2021 年,淘宝就发文称,npm 淘宝镜像已经从 registry.npm.taobao.org 切换到了 registry.npmmirror.com。旧域名也将于 2022 年 5 月 31 日停止服务(不过,直到今天 HTTPS 证书到期才真正不能用了) 

  • 相关阅读:
    Jboss反序列化漏洞
    【网络编程】TCP传输控制协议(Transmission Control Protocol)
    Redhat(7)-文件挂载Mount-管理cockpit-文件查找locate和find
    【进阶篇】MySQL的MVCC实现机制详解
    指针仪表读数YOLOV8NANO
    简易badusb制作与鱼儿上线
    T246836 [LSOT-1] 暴龙的土豆
    【Qt之QMetaType】使用
    【毕业设计源码】基于SSM的小程序任务调度管理信息系统设计与实现
    Stream流、 方法引用
  • 原文地址:https://blog.csdn.net/happyzhlb/article/details/132657344