Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
hexo-disqus-proxy
Advanced tools
[![npm package](https://img.shields.io/npm/v/hexo-disqus-proxy.svg?style=flat)](https://www.npmjs.org/package/hexo-disqus-proxy) ![](https://img.shields.io/badge/node-%3E7.6-brightgreen.svg)
在Hexo
博客目录执行
npm install hexo-disqus-proxy --save
在你的Hexo
博客目录中修改_config.yml
文件
添加如下配置:(注意缩进和空格)
disqus_proxy:
shortname: ciqu
host: disqus-proxy.ycwalker.com
port: 443
admin_avatar: /avatars/admin-avatar.jpg
default_avatar: /avatars/default-avatar.png
其中:
shortname
是你的website的 shortname 名称 比如在你的disqus安装代码中 有这样一句脚本:
s.src = 'https://test-eo9kkdlcze.disqus.com/embed.js';
那么你的disqus 的shortname 就是 test-eo9kkdlczehost
是你启用disqus代理的VPS的域名port
是VPS服务器启用disqus代理的端口,需要与之后设置的后端一致default_avatar
和admin_avatar
分别是默认头像和管理员头像的路径。例如在source
目录下建立avatars
目录,放入两个头像,在这里设置成绝对路径。如果不设置,则为默认头像。在disqus
的官方配置中,我们需要在页面合适位置添加一个 <div id="disqus_thread"></div>
作为占位符,
而hexo-disqus-proxy
插件并不能知道在页面的哪个位置插入这个标签比较合适,所以这个需要额外配置一下:
如果你本身用的主题已经支持disqus
的配置,那么灰常爽,你只需要正常启用主题的disqus评论,插件就会自动检测并合适的覆盖,
这是最常见的情况,肯定是最吼的。
在你写的markdown
文件底部插入<div id="disqus_thread"></div>
。这样评论框位置会位于文章的下方,并且大小能被外部元素所约束,不会乱跑。
什么,markdown
也能插入HTML
标签?
嗯是的。
稍微懂一点点hexo
的基本知识,自己改主题。大概的思路是,在Hexo
渲染的过程中,把<div id="disqus_thread"></div>
加在合适的位置就行了。
什么也不做的话,默认会直接把评论框元素挂在body
的元素的最后,这样通常会撑满一整行,通常效果不是你想要的。
后端使用Node.js
,需要Node.js
版本7.6
以上。
git clone https://github.com/ciqulover/disqus-proxy
只需要安装后端的依赖
npm i --production
// 或者
yarn install --production
server
目录下的config.js
module.exports = {
// 服务端端口,需要与disqus-proxy前端设置一致
port: 5509,
// 你的diqus secret key
api_secret: 'your secret key',
// 你的website的 shortname 名称 比如在你的disqus安装代码中 有这样一句脚本:
// s.src = 'https://test-eo9kkdlcze.disqus.com/embed.js';
// 那么你的disqus 的shortname 就是 test-eo9kkdlcze
shortname: 'ciqu',
// 服务端socks5代理转发,便于在本地测试,生产环境通常为null
// socks5Proxy: {
// host: 'localhost',
// port: 1086
// },
socks5Proxy: null,
// 日志输出位置,输出到文件或控制台 'file' | 'console'
log: 'console'
}
api-secret
api-secret
需要你在disqus的官方网站上开启API权限,申请成功后会得到这个秘钥。
并且需要在后台的Settings => Community里开启访客评论
cd server
node index.js
推荐用pm2
在生产环境启动,否则你断开ssh,node进程就终止了
npm install pm2 -g
pm2 start index.js
如果你在配置文件中选择log
类型为file
, 那么输出的日志文件将在默认为server目录下的disqus-proxy.log
FAQs
[![npm package](https://img.shields.io/npm/v/hexo-disqus-proxy.svg?style=flat)](https://www.npmjs.org/package/hexo-disqus-proxy) ![](https://img.shields.io/badge/node-%3E7.6-brightgreen.svg)
The npm package hexo-disqus-proxy receives a total of 1 weekly downloads. As such, hexo-disqus-proxy popularity was classified as not popular.
We found that hexo-disqus-proxy demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.