Node+Hexo

Node.js

nvm

nvm是一个node的版本管理工具,可以对node的版本进行控制。

Releases · coreybutler/nvm-windows

npm

npm用于初始化工程、管理依赖。

NVM操作

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
C:\Users\M_YoungBW>nvm

Running version 1.1.12.

Usage:

nvm arch : Show if node is running in 32 or 64 bit mode.
nvm current : Display active version.
nvm debug : Check the NVM4W process for known problems (troubleshooter).
nvm install <version> [arch] : The version can be a specific version, "latest" for the latest current version, or "lts" for the
most recent LTS version. Optionally specify whether to install the 32 or 64 bit version (defaults
to system arch). Set [arch] to "all" to install 32 AND 64 bit versions.
Add --insecure to the end of this command to bypass SSL validation of the remote download server.
nvm list [available] : List the node.js installations. Type "available" at the end to see what can be installed. Aliased as ls.
nvm on : Enable node.js version management.
nvm off : Disable node.js version management.
nvm proxy [url] : Set a proxy to use for downloads. Leave [url] blank to see the current proxy.
Set [url] to "none" to remove the proxy.
nvm node_mirror [url] : Set the node mirror. Defaults to https://nodejs.org/dist/. Leave [url] blank to use default url.
nvm npm_mirror [url] : Set the npm mirror. Defaults to https://github.com/npm/cli/archive/. Leave [url] blank to default url.
nvm uninstall <version> : The version must be a specific version.
nvm use [version] [arch] : Switch to use the specified version. Optionally use "latest", "lts", or "newest".
"newest" is the latest installed version. Optionally specify 32/64bit architecture.
nvm use <arch> will continue using the selected version, but switch to 32/64 bit mode.
nvm root [path] : Set the directory where nvm should store different versions of node.js.
If <path> is not set, the current root will be displayed.
nvm [--]version : Displays the current running version of nvm for Windows. Aliased as v.


C:\Users\M_YoungBW>nvm list available

| CURRENT | LTS | OLD STABLE | OLD UNSTABLE |
|--------------|--------------|--------------|--------------|
| 23.2.0 | 22.11.0 | 0.12.18 | 0.11.16 |
| 23.1.0 | 20.18.0 | 0.12.17 | 0.11.15 |
| 23.0.0 | 20.17.0 | 0.12.16 | 0.11.14 |
| 22.10.0 | 20.16.0 | 0.12.15 | 0.11.13 |
| 22.9.0 | 20.15.1 | 0.12.14 | 0.11.12 |
| 22.8.0 | 20.15.0 | 0.12.13 | 0.11.11 |
| 22.7.0 | 20.14.0 | 0.12.12 | 0.11.10 |
| 22.6.0 | 20.13.1 | 0.12.11 | 0.11.9 |
| 22.5.1 | 20.13.0 | 0.12.10 | 0.11.8 |
| 22.5.0 | 20.12.2 | 0.12.9 | 0.11.7 |
| 22.4.1 | 20.12.1 | 0.12.8 | 0.11.6 |
| 22.4.0 | 20.12.0 | 0.12.7 | 0.11.5 |
| 22.3.0 | 20.11.1 | 0.12.6 | 0.11.4 |
| 22.2.0 | 20.11.0 | 0.12.5 | 0.11.3 |
| 22.1.0 | 20.10.0 | 0.12.4 | 0.11.2 |
| 22.0.0 | 20.9.0 | 0.12.3 | 0.11.1 |
| 21.7.3 | 18.20.5 | 0.12.2 | 0.11.0 |
| 21.7.2 | 18.20.4 | 0.12.1 | 0.9.12 |
| 21.7.1 | 18.20.3 | 0.12.0 | 0.9.11 |
| 21.7.0 | 18.20.2 | 0.10.48 | 0.9.10 |

This is a partial list. For a complete list, visit https://nodejs.org/en/download/releases

C:\Users\M_YoungBW>
C:\Users\M_YoungBW>nvm install 22.11.0
Downloading node.js version 22.11.0 (64-bit)...
Extracting node and npm...
Complete
npm v10.9.0 installed successfully.


Installation complete. If you want to use this version, type

nvm use 22.11.0

C:\Users\M_YoungBW>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
C:\Users\M_YoungBW>node -v
'node' 不是内部或外部命令,也不是可运行的程序
或批处理文件。

C:\Users\M_YoungBW>nvm use 22.11.0
Now using node v22.11.0 (64-bit)

C:\Users\M_YoungBW>node -v
v22.11.0

C:\Users\M_YoungBW>
C:\Users\M_YoungBW>npm -v
10.9.0

C:\Users\M_YoungBW>

npm镜像

1
2
3
4
5
6
7
8
9
10
E:\1_Code\Blog_Data\Hexo> npm config get registry
https://registry.npmjs.org/

E:\1_Code\Blog_Data\Hexo>
E:\1_Code\Blog_Data\Hexo>npm config set registry=https://registry.npmmirror.com

E:\1_Code\Blog_Data\Hexo> npm config get registry
https://registry.npmmirror.com

E:\1_Code\Blog_Data\Hexo>

Hexo

安装

1
npm install -g hexo-cli

初始化

1
hexo init myblog
1
2
3
hexo clean
hexo generate
hexo deploy

hexo clean 清除了你之前生成的东西,也可以不加。
hexo generate 顾名思义,生成静态文章,可以用 hexo g缩写
hexo deploy 部署文章,可以用hexo d缩写

GitHub解析

1
2
3
4
185.199.108.153
185.199.109.153
185.199.110.153
185.199.111.153

GitTalk

Valine

未完待续

参考

从零开始搭建web开发环境_web环境-CSDN博客

hexo史上最全搭建教程-CSDN博客

The authenticity of host ‘github.com (20.205.243.166)‘ can‘t be established. 报错解决-CSDN博客

【终于解决了hexo发布到GitHub出现404的问题了】_hexo 上传成功,github无法访问-CSDN博客

hexo部署到gitee(码云)_hexo部署gitee-CSDN博客

Managing a custom domain for your GitHub Pages site - GitHub Docs

搭建评论系统,Gittalk插件踩坑指南|玩转GitHub Pages三部曲(三)-CSDN博客

解决hexo本地与部署不一致问题_hexo本地部署和线上不一样-CSDN博客

Valine - 一款快速、简洁且高效的无后端评论系统-CSDN博客

Matery(Hexo)主题加载gittalk插件_hexo talk插件-CSDN博客

记录一个hexo+butterfly主题集成gitalk的坑:未找到相关的 Issues 进行评论,请联系@作者初始化创建-CSDN博客

【Git】修改设置 git 的 username、email_git设置username-CSDN博客

提升你的阅读效率:背景颜色的重要性_阅读纸质背景颜色值-CSDN博客