hexogitalk评论自动初始化
# 第一步 申请Personal Access Token
从 Github 的 Personal access tokens (opens new window) 页面,点击 Generate new token (opens new window)
# 第二步 安装项目依赖
npm i request xml-parser blueimp-md5 moment hexo-generator-sitemap -S
项目根目录配置文件 _config.yml 添加配置
# ...
# hexo sitemap网站地图
sitemap:
path: sitemap.xml
# 此配置跟后面新建的文件名相同
template: ./sitemap_template.xml
# ...
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
# 第三步 项目根目录下新建 comment.js
# 第四步: 测试
执行 node ./comment.js
# 第五步: 自动化
修改 package.json
...
"scripts": {
"b": "npm run c && hexo generate && node comment.js",
"c": "hexo clean",
"d": "npm run b && hexo d ",
"s": "npm run b && hexo s"
},
...
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
运行 npm run d 或者 npm run s
本文参考: https://blog.jijian.link/2020-01-10/hexo-gitalk-auto-init/
上次更新: 2024/11/01, 16:22:32
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122