Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leirock/hexo-next-artalk
Artalk comment plugin for Hexo NexT
https://github.com/leirock/hexo-next-artalk
artalk hexo-next hexo-plugin
Last synced: about 1 month ago
JSON representation
Artalk comment plugin for Hexo NexT
- Host: GitHub
- URL: https://github.com/leirock/hexo-next-artalk
- Owner: leirock
- Created: 2022-05-17T21:26:26.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-03-16T14:56:18.000Z (over 1 year ago)
- Last Synced: 2024-10-07T20:17:28.267Z (2 months ago)
- Topics: artalk, hexo-next, hexo-plugin
- Language: JavaScript
- Homepage:
- Size: 18.6 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README-CN.md
Awesome Lists containing this project
- awesome-next - hexo-next-artalk
README
# 用于 Hexo NexT 的 Artalk 插件
> [English](https://github.com/leirock/hexo-next-artalk/blob/main/README.md)
[![NPM version](https://img.shields.io/npm/v/hexo-next-artalk?color=red&logo=npm&style=flat-square)](https://www.npmjs.com/package/hexo-next-artalk)
[![NPM downloads](https://img.shields.io/npm/dm/hexo-next-artalk?color=red&logo=npm&style=flat-square)](https://www.npmjs.com/package/hexo-next-artalk)
[![Theme Version](https://img.shields.io/badge/NexT-v7.3.0+-blue?style=flat-square)](https://github.com/next-theme/hexo-theme-next)
[![Artalk Version](https://img.shields.io/badge/Artalk-v2.3.1+-558fb5?style=flat-square)](https://github.com/ArtalkJS/Artalk)这是一款适用于 Hexo NexT 的 [Artalk](https://artalk.js.org) 评论插件。
## 安装
```bash
npm install hexo-next-artalk
```## 配置
将下列配置添加到 Hexo 的根配置文件 `_config.yml` 之中,把 `enable` 设为 `true`,然后将 `artalk` 下的其他配置项修改为您自己的值。
```yaml
# Artalk 配置文件
# 更多信息: https://artalk.js.orgartalk:
enable: false# 后端程序 API 地址,请修改为您自己的 API 地址
server: https://artalk.example.com# 网站名称,请指定后段程序中的一个网站,留空即默认站点
site:# 前端资源 CDN 地址,您可以修改为偏好的其他 CDN 镜像
## 参考:https://artalk.js.org/guide/frontend/install.html
jsUrl: https://artalk.example.com/dist/Artalk.js
cssUrl: https://artalk.example.com/dist/Artalk.css# 文章阅读数统计
pvCount: true# 评论数统计
commentCount: true# 黑暗模式
darkMode: auto# 在后端控制前端
## 参考:https://artalk.js.org/guide/backend/fe-control.html
useBackendConf: true
```## 贴士
在文章信息栏中,评论数的默认显示文字是“Artalk”。如果您希望修改此处,例如,改为简体中文的“评论数”:
1. 在 Hexo 博客文件夹下创建文件 `/source/_data/languages.yml`;
2. 编辑该文件如下并保存。```yaml
zh-CN:
post:
comments:
artalk: 评论数
```