diff --git a/2024/11/29/CloudFlareReverseProxy/index.html b/2024/11/29/CloudFlareReverseProxy/index.html index 530d6cf..ff17e2c 100644 --- a/2024/11/29/CloudFlareReverseProxy/index.html +++ b/2024/11/29/CloudFlareReverseProxy/index.html @@ -157,7 +157,7 @@ } detectApple() })(window) -

使用CloudFlare搭建反向代理

使用CloudFlare搭建反向代理

+

使用CloudFlare搭建反向代理

文章作者: MapleLeaf
文章链接: http://mapleleaf.icu/2024/11/29/CloudFlareReverseProxy/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 MapleLeaf
赞助
  • wechat
    wechat
  • alipay
    alipay

评论
赞助
  • wechat
    wechat
  • alipay
    alipay

评论
-

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

+

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

@@ -169,7 +169,7 @@

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

-
文章作者: MapleLeaf
文章链接: http://mapleleaf.icu/2024/12/02/hello-world/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 MapleLeaf
赞助
  • wechat
    wechat
  • alipay
    alipay

评论
赞助
  • wechat
    wechat
  • alipay
    alipay

评论
+

npm,pnpm,yarn换源

npm,pnpm,yarn换源以及一些问题

前言

使用npm,pnpm,yarn时经常出现网络问题,选择并配置国内镜像源可以显著提高包的下载速度和稳定性。

+

npm

查询当前源

+
1
npm get registry
+ +

设置淘宝镜像源

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

如果出现一些问题可以换回官方源重试

+
1
npm config set registry https://registry.npmjs.org/
+ +

npm首次运行时会出现

+
1
2
3
4
5
6
npm : 无法加载文件 C:\Users\用户名\software\nodejs\npm.ps1,因为在此系统上禁止运行脚本。有关详细信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execu
tion_Policies。
所在位置 行:1 字符: 1
+ npm run start
+ ~~~
+ CategoryInfo : SecurityError: (:) [],PSSecurityException
+ +

解决办法: 使用管理员权限打开CMD或者PowerShell执行下面的命令将计算机上的执行策略更改为 RemoteSigned

+
1
set-ExecutionPolicy RemoteSigned
+ +

pnpm

安装

+
1
npm install pnpm -g
+ +

查询当前源

+
1
pnpm get registry
+ +

设置淘宝镜像源

+
1
pnpm config set registry https://registry.npmmirror.com
+ +

换回官方源

+
1
pnpm config set registry https://registry.npmjs.org
+ +

yarn

安装

+
1
npm install yarn -g
+ +

查询当前源

+
1
yarn config get registry
+ +

设置淘宝镜像源

+
1
yarn config set registry https://registry.npmmirror.com
+ +

换回官方源

+
1
yarn config set registry https://registry.yarnpkg.com
+ +

拓展:使用nrm切换镜像源

介绍

nrm(npm registry manager)是一个npm源管理工具,它可以帮助用户快速地在不同的npm源之间切换,以提高包的下载速度和稳定性

+

安装

1
npm install nrm -g
+ +

查看可选择的源

安装完成后,你可以使用以下命令查看所有可用的 npm 源:

+
1
nrm ls
+ +

这将列出所有已知的npm源,包括官方源和你可能添加的自定义源。

+

切换镜像源

要切换到特定的源,执行以下命令

+
1
nrm use <镜像源名称>
+ +

例如,如果你想切换到淘宝的npm镜像源,你可以执行

+
1
nrm use taobao
+ +

其他同理

+

增加镜像源

如果给出的镜像源没有你想用的,你可以增加定制的源

+
1
nrm add <镜像源名称> <镜像源地址>
+ +

删除镜像源

如果你想要删除一个已添加的源,可以使用以下命令

+
1
nrm del <镜像源名称>
+ +

例如,删除 淘宝 的镜像源

+
1
nrm del taobao
+ +

测试镜像源的速度

nrm 支持通过 nrm test 命令测试相应源的响应时间,以选择适合的镜像源

+
1
nrm test <registry>
+ +

例如,测试 npm 源的响应时间

+
1
nrm test npm
+ +

你也可以直接测试所有源的响应时间

+
1
nrm test
+ +

注意版本:从 nrm v1.4.0 开始,最低支持的 Node 版本是 18

+
+
文章作者: MapleLeaf
文章链接: http://mapleleaf.icu/2024/12/02/npm-pnpm-yarn%E6%8D%A2%E6%BA%90/
版权声明: 本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 MapleLeaf
赞助
  • wechat
    wechat
  • alipay
    alipay

评论
\ No newline at end of file diff --git a/404.html b/404.html index fea8ff4..bff27bd 100644 --- a/404.html +++ b/404.html @@ -54,7 +54,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-02 22:26:43' + postUpdate: '2024-12-02 23:06:35' } -
\ No newline at end of file +
\ No newline at end of file diff --git a/about/index.html b/about/index.html index b674aa5..3f52cea 100644 --- a/about/index.html +++ b/about/index.html @@ -154,7 +154,7 @@ } detectApple() })(window) -

评论
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
-
文章总览 - 1
2024
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file +
文章总览 - 1
2024
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
3
已运行时间 :
本站总字数 :
1.7k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file diff --git a/archives/2024/12/index.html b/archives/2024/12/index.html index eeff851..f370713 100644 --- a/archives/2024/12/index.html +++ b/archives/2024/12/index.html @@ -54,7 +54,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-02 22:26:44' + postUpdate: '2024-12-02 23:06:35' } -
文章总览 - 1
2024
Hello World
Hello World
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file +
文章总览 - 2
2024
npm,pnpm,yarn换源
npm,pnpm,yarn换源
Hello World
Hello World
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
3
已运行时间 :
本站总字数 :
1.7k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file diff --git a/archives/2024/index.html b/archives/2024/index.html index dbcc68f..8a92afe 100644 --- a/archives/2024/index.html +++ b/archives/2024/index.html @@ -54,7 +54,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-02 22:26:44' + postUpdate: '2024-12-02 23:06:35' } -
文章总览 - 2
2024
Hello World
Hello World
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file +
文章总览 - 3
2024
npm,pnpm,yarn换源
npm,pnpm,yarn换源
Hello World
Hello World
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
3
已运行时间 :
本站总字数 :
1.7k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file diff --git a/archives/index.html b/archives/index.html index 9aaedba..e5fabd3 100644 --- a/archives/index.html +++ b/archives/index.html @@ -54,7 +54,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-02 22:26:44' + postUpdate: '2024-12-02 23:06:35' } -
文章总览 - 2
2024
Hello World
Hello World
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file +
文章总览 - 3
2024
npm,pnpm,yarn换源
npm,pnpm,yarn换源
Hello World
Hello World
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
3
已运行时间 :
本站总字数 :
1.7k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file diff --git a/atom.xml b/atom.xml index ce9c6f2..af4b69d 100644 --- a/atom.xml +++ b/atom.xml @@ -6,7 +6,7 @@ - 2024-12-01T02:32:28.841Z + 2024-12-02T15:06:01.923Z http://mapleleaf.icu/ @@ -16,6 +16,29 @@ Hexo + + npm,pnpm,yarn换源 + + http://mapleleaf.icu/2024/12/02/npm-pnpm-yarn%E6%8D%A2%E6%BA%90/ + 2024-12-02T14:35:28.000Z + 2024-12-02T15:06:01.923Z + + + + + + + <link rel="stylesheet" class="aplayer-secondary-style-marker" href="\assets\css\APlayer.min.css"><script src="\assets\js\APlayer.min.js" + + + + + + + + + + Hello World diff --git a/baidusitemap.xml b/baidusitemap.xml index 33b751a..bd35607 100644 --- a/baidusitemap.xml +++ b/baidusitemap.xml @@ -1,5 +1,9 @@ + + http://MapleLeaf.icu/2024/12/02/npm-pnpm-yarn%E6%8D%A2%E6%BA%90/ + 2024-12-02 + http://MapleLeaf.icu/2024/11/29/CloudFlareReverseProxy/ 2024-12-02 diff --git a/categories/index.html b/categories/index.html index d94e6b9..d2bc438 100644 --- a/categories/index.html +++ b/categories/index.html @@ -154,7 +154,7 @@ } detectApple() })(window) -

评论
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
-

评论
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
-
Hello World
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
3
已运行时间 :
本站总字数 :
1.7k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file diff --git a/link/index.html b/link/index.html index 5f0d1d7..d57319c 100644 --- a/link/index.html +++ b/link/index.html @@ -154,7 +154,7 @@ } detectApple() })(window) -