diff --git a/2024/11/29/CloudFlareReverseProxy/index.html b/2024/11/29/CloudFlareReverseProxy/index.html index dfb8283..56695ba 100644 --- a/2024/11/29/CloudFlareReverseProxy/index.html +++ b/2024/11/29/CloudFlareReverseProxy/index.html @@ -1,13 +1,13 @@ -使用CloudFlare搭建反向代理 | MapleLeaf +使用CloudFlare搭建反向代理 | MapleLeaf - + - + @@ -59,7 +59,7 @@ isHome: false, isHighlightShrink: false, isToc: true, - postUpdate: '2024-11-30 21:49:56' + postUpdate: '2024-12-03 00:41:51' } -

使用CloudFlare搭建反向代理

使用CloudFlare搭建反向代理

-

互联网大善人!

+ })(window) +

使用CloudFlare搭建反向代理

使用CloudFlare搭建反向代理

+

CloudFlare,互联网大善人!

+

FREE套餐CloudFlare每日提供 10w 请求的免费额度,个人用完全足够,但并不能保证很多人同时使用,强烈建议仅自用

+
+

准备

  • 一个CloudFlare账号,如果没有就去CloudFlare注册 这不废话
  • 一个可以添加到CloudFlare的域名(可选),主要是CloudFlare的一些域名被墙,导致无法直接访问
  • @@ -198,15 +239,15 @@

    刷新后域名的状态变为活动就可以了

    使用域名

    继续前往 Workers 和 Pages ,点击进入刚才创建的 Workers 服务

    -

    进入设置,在 域和路由 点击 添加

    +

    进入设置,在 域和路由 点击 添加

    点击自定义域

    输入任意的域名前缀+你的域名.例如proxy.example.com , 将example.com替换为你的域名

    点击添加域即可

    然后将 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.

+ })(window) +

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,12 +207,12 @@

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

-
文章作者: MapleLeaf
文章链接: http://mapleleaf.icu/2024/11/29/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 81a4f30..f63923e 100644 --- a/404.html +++ b/404.html @@ -54,7 +54,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-01 13:12:16' + postUpdate: '2024-12-05 17:22:36' } -
\ No newline at end of file +
\ No newline at end of file diff --git a/about/index.html b/about/index.html index 1d33532..9d787b2 100644 --- a/about/index.html +++ b/about/index.html @@ -154,12 +154,12 @@ } detectApple() })(window) -

评论
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
-
文章总览 - 2
2024
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
Hello World
Hello World
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file +
文章总览 - 2
2024
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
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/12/index.html b/archives/2024/12/index.html new file mode 100644 index 0000000..2a09c7b --- /dev/null +++ b/archives/2024/12/index.html @@ -0,0 +1,155 @@ +十二月 2024 | MapleLeaf + + + + + + + + +
文章总览 - 1
2024
npm,pnpm,yarn换源
npm,pnpm,yarn换源
公告
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 6cd5d56..f166949 100644 --- a/archives/2024/index.html +++ b/archives/2024/index.html @@ -54,7 +54,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-01 13:12:16' + postUpdate: '2024-12-05 17:22:36' } -
文章总览 - 2
2024
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
Hello World
Hello World
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file +
文章总览 - 3
2024
npm,pnpm,yarn换源
npm,pnpm,yarn换源
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
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/index.html b/archives/index.html index 51faa9b..fcdff77 100644 --- a/archives/index.html +++ b/archives/index.html @@ -54,7 +54,7 @@ isHome: false, isHighlightShrink: false, isToc: false, - postUpdate: '2024-12-01 13:12:16' + postUpdate: '2024-12-05 17:22:36' } -
文章总览 - 2
2024
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
Hello World
Hello World
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
\ No newline at end of file +
文章总览 - 3
2024
npm,pnpm,yarn换源
npm,pnpm,yarn换源
使用CloudFlare搭建反向代理
使用CloudFlare搭建反向代理
Hello World
Hello World
公告
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 731dc0e..2119da6 100644 --- a/atom.xml +++ b/atom.xml @@ -6,7 +6,7 @@ - 2024-11-30T13:49:56.765Z + 2024-12-02T15:06:01.923Z http://mapleleaf.icu/ @@ -16,12 +16,35 @@ 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" + + + + + + + + + + 使用CloudFlare搭建反向代理 http://mapleleaf.icu/2024/11/29/CloudFlareReverseProxy/ 2024-11-29T04:27:29.000Z - 2024-11-30T13:49:56.765Z + 2024-12-02T16:41:51.010Z @@ -43,8 +66,8 @@ Hello World http://mapleleaf.icu/2024/11/29/hello-world/ - 2024-11-29T02:35:28.841Z - 2024-12-01T02:32:28.841Z + 2024-11-29T03:27:29.000Z + 2024-12-02T15:26:54.088Z diff --git a/baidusitemap.xml b/baidusitemap.xml index 1447549..1349f08 100644 --- a/baidusitemap.xml +++ b/baidusitemap.xml @@ -1,11 +1,15 @@ + + http://MapleLeaf.icu/2024/11/29/CloudFlareReverseProxy/ + 2024-12-02 + http://MapleLeaf.icu/2024/11/29/hello-world/ - 2024-12-01 + 2024-12-02 - http://MapleLeaf.icu/2024/11/29/CloudFlareReverseProxy/ - 2024-11-30 + http://MapleLeaf.icu/2024/12/02/npm-pnpm-yarn%E6%8D%A2%E6%BA%90/ + 2024-12-02 \ No newline at end of file diff --git a/categories/index.html b/categories/index.html index d5cf805..d961892 100644 --- a/categories/index.html +++ b/categories/index.html @@ -154,12 +154,12 @@ } detectApple() })(window) -

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

评论
公告
An epitaph is short, and so is life.
最新文章
标签
网站资讯
文章数目 :
2
已运行时间 :
本站总字数 :
1k
本站访客数 :
本站总访问量 :
最后更新时间 :
-
使用CloudFlare搭建反向代理
公告
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 c28b2f2..c5473dc 100644 --- a/link/index.html +++ b/link/index.html @@ -154,7 +154,7 @@ } detectApple() })(window) -