npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

idouban

v1.1.3

Published

Inject douban pages in your site.

Downloads

675

Readme

idouban

一个在网页中嵌入个人豆瓣页面的 javascript 插件。

package version GitHub license

配置

<body>
  <div id="douban"></div>
</body>
<link
  rel="stylesheet"
  href="https://cdn.jsdelivr.net/npm/idouban/dist/index.css"
/>
<script
  src="https://cdn.jsdelivr.net/npm/idouban/dist/index.js"
  onload="idouban.init({
      selector:'#douban',
      lang: 'zh',
      douban_id: '162448367',
      type: 'book',
      quote: 'This is my books',
      actions: ['do','wish','collect'],
      page_size: 10,
      max_line: 4
          })"
></script>

cdn 缓存可能不是最新,如需最新版本,可直接指定版本号,例如若当前版本是 1.1.0

考虑到 jsdelivr 国内访问效果不太好,建议直接 self-host 这些文件。

配置项如下:

  • selector : 表示需要将相关代码生成后嵌入到指定 document.querySelector($selector) 的元素下。
  • lang: 表示国际化的语言,当前支持:zh-cn , zh-tw , en .
  • douban_id : 你的豆瓣ID(纯数字格式,不是自定义的域名)。获取方法可以参考怎样获取豆瓣的数字 ID ?
  • type : 表示需要生成的页面类型,可选项为 book, movie, game, song
  • actions: 字符串数组,表示需要展示的"在看","想看","已看"的顺序,默认是 ["do", "wish", "collect"]。
  • quote: 表示需要在页面上方添加的一段引用文本,可不填。
  • page_size : 每页需要展示的条目数,默认为10。
  • max_line: 条目的元数据最多的行数,超过会以省略号代替,默认为4。

原理

插件内部会请求一个豆瓣数据缓存服务 mouban,获取响应后直接直接以列表的形式渲染出来。类似功能的插件还有 hexo-douban

用户首次访问时会触发 mouban 的初始化收录。这个过程可能比较久,没有排队的情况下需要等待的时间至少为 条目数/15*5秒 。如果一不小心排队了,则可能需要等待半天。

首次初始化好之后,后续会随着页面的不断访问定时进行增量更新,期间均可正常使用。

Demo

读书页 电影页 游戏页 音乐页

反馈

系统刚上线,可能还不够完善。如果大家在使用的过程中数据有问题、或者有什么问题和意见,欢迎随时提issue。

如果你觉得这个插件很好用,欢迎右上角点下 star ⭐️,表达对作者的鼓励。

免责声明

本项目仅供学习交流使用,不得用于任何商业用 途。

数据来源于互联网公开内容,没有获取任何私有 和有权限的信息(个人信息等),由此引发的任何法律纠纷与本人无关。