notejs NPM切换到淘宝源

今天在玩小程序的时候,一直叫我电脑安装依赖,在cmd中输入npm install,显示npm不是内部或外部命令
这个就很奇怪了,上网一查原来 npm 是note.js技术,需要做notejs环境配置,而我直接下载了note.js。因为下载好后,安装号程序会自动配置全局变量

1。进入nodejs官网:https://nodejs.org/en/,下载并安装好:
notejs NPM切换到淘宝源_第1张图片

国外网站比较慢,大家可以到我的百度云下载,note.js 8.7 x64最新版
链接:http://pan.baidu.com/s/1nuXXtSd 密码:3xxn

2。然后在进行npm包的安装,此时可以将npm换成淘宝的镜像,可以提高程序运行速度,分享一下切换淘宝源的两种方法:

–>全局配置切换到淘宝源

npm config set registry https://registry.npm.taobao.org

–>检测是否切换到了淘宝源

npm info underscore

会显示如下代码:

{ name: 'underscore',
  description: 'JavaScript\'s functional programming helper library.',
  'dist-tags': { latest: '1.8.3', stable: '1.8.3' },
  maintainers:
   [ 'jashkenas ',
     'jridgewell ' ],
  time:
   { modified: '2017-03-27T10:13:57.000Z',
     created: '2011-11-14T20:28:47.115Z',

     ******等字段********

dist:
 { shasum: '4f3fb53b106e6097fcf9cb4109f2a5e9bdfa5022',
   size: 34172,
   noattachment: false,
   tarball: 'http://registry.npm.taobao.org/underscore/download/underscore-1.8.3.tgz' },
directories: {},
publish_time: 1427988774520 }

或者在电脑桌面有个admin 图像
这里写图片描述

点击进去,会看到一个.npmrc文件,然后用自己编写工具,打开(如果没有,没有关系,直接在DOM中输入 npm config set registry https://registry.npm.taobao.org 然后再看下是否有)
如果还没有,那你直接将下面的代码复制 粘贴进去,一样的效果

registry=https://registry.npm.taobao.org/

**

建议用Notepad++编写工具

**

你可能感兴趣的:(node-js)