|
@@ -6,7 +6,7 @@
|
|
|
|
|
|
NPM是随同NodeJS一起安装的包管理工具,能解决NodeJS代码部署上的很多问题,常见的使用场景有以下几种:
|
|
|
- 允许用户从NPM服务器**下载别人编写的第三方包**到本地使用。
|
|
|
-* 允许用户从NPM服务器下载并安装别人编写的命令行程序到本地使用。
|
|
|
+* 允许用户从NPM服务器下载并安装别人编写的==**命令行程序**==到本地使用。
|
|
|
- 允许用户将自己编写的包或命令行程序上传到NPM服务器供别人使用。
|
|
|
新版的nodejs已经集成了npm,所以安装了nodejs也就一同安装了npm。可以通过输入 **"npm -v"** 来测试是否成功安装,出现版本提示表示安装成功。
|
|
|
|
|
@@ -23,8 +23,7 @@ npm install npm@6.14.13 -g
|
|
|
由于国内直接使用 npm 的官方镜像是非常慢的,这里推荐使用淘宝 NPM 镜像。
|
|
|
|
|
|
npm 官方原始镜像网址是:https://registry.npmjs.org/
|
|
|
-淘宝 NPM 镜像:https://registry.npm.taobao.org
|
|
|
-阿里云 NPM 镜像:https://npm.aliyun.com
|
|
|
+淘宝 NPM 镜像::https://npm.aliyun.com
|
|
|
腾讯云 NPM 镜像:https://mirrors.cloud.tencent.com/npm/
|
|
|
华为云 NPM 镜像:https://mirrors.huaweicloud.com/repository/npm/
|
|
|
网易 NPM 镜像:https://mirrors.163.com/npm/
|
|
@@ -35,7 +34,7 @@ npm 官方原始镜像网址是:https://registry.npmjs.org/
|
|
|
# 查看当前使用的镜像
|
|
|
npm config get registry
|
|
|
# 配置镜像
|
|
|
-npm config set registry https://registry.npm.taobao.org
|
|
|
+npm config set registry https://registry.npmmirror.com
|
|
|
```
|
|
|
|
|
|
淘宝 NPM 镜像是一个完整 npmjs.org 镜像,你可以用此代替官方版本(只读),同步频率目前为 10分钟 一次以保证尽量与官方服务同步。
|
|
@@ -70,7 +69,7 @@ npm install express -g
|
|
|
全局安装的包一般可提供直接执行的命令。我们通过对一些工具类的包采用这种方式安装,如:gulp, nodemon, live-server, nrm等。
|
|
|
本地安装的包是与具体的项目有关的, 我们需要在开发过程中使用这些具体的功能。
|
|
|
|
|
|
-一个经验法则:要用到该包的命令执行任务的就需要全局安装;要通过require引入使用的就需要本地安装-项目包。
|
|
|
+==**一个经验法则:要用到该包的命令执行任务的就需要全局安装;要通过require引入使用的就需要本地安装-项目包。**==
|
|
|
|
|
|
**注:在项目中不能引用全局安装的包**
|
|
|
|
|
@@ -87,4 +86,26 @@ npm search 模块名
|
|
|
|
|
|
|
|
|
```
|
|
|
+### pnpm
|
|
|
|
|
|
+pnpm 远比 npm 、yarn 快。
|
|
|
+```shell
|
|
|
+# 安装pnpm
|
|
|
+npm install -g pnpm
|
|
|
+```
|
|
|
+
|
|
|
+### 问题
|
|
|
+
|
|
|
+#### certificate has expired
|
|
|
+
|
|
|
+方法1:取消SSL验证
|
|
|
+```shell
|
|
|
+npm config set strict-ssl false
|
|
|
+```
|
|
|
+
|
|
|
+方法2:更换npm镜像源
|
|
|
+```shell
|
|
|
+npm config set registry http://registry.cnpmjs.org
|
|
|
+# 该 registry.npm.taobao.org 地址已更换为 https://registry.npmmirror.com
|
|
|
+npm config set registry registry.npm.taobao.org
|
|
|
+```
|