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

clz

v1.0.4

Published

Serverless & Beautiful third-part comment system base on lean cloud.

Downloads

9

Readme

clz

Serverless & Beautiful third-part comment system base on lean cloud. 简洁有趣、无需后端代码的三方评论系统。

Live Demo 1 | Live Demo 2

npm Version Build Status npm License

Install

$ npm i --save clz

Usage

import CLZ from 'clz';

// 注意换成你自己的,去 leancloud 免费创建即可获取
const c = new CLZ({
  appId: 'KO2rVJq8lMvgaYkEMhrUxgGn-gzGzoHsz',
  appKey: '3UEp42VPz1kc731PeKDYKY7Q',
  serverURLs: 'https://ko2rvjq8.lc-cn-n1-shared.com',
  page: 'clz',
});

// 处理当前页面
c.launch();

// or update 
c.clear();

c.updatePage('your page key'); // default is `pathname`.

c.launch();

Option

  • appId:leancloud 应用的 appId;
  • appKey:leancloud 应用的 appKey;
  • serverURLs:leancloud 应用的 serverURLs;
  • page:页面唯一标识,默认是根据 url 中的 pathname 标识;
  • clicks:触发评论的点击次数,默认是 2,也就是双击;
  • interval:连续点击的间隔时间,默认为 200 毫秒;

Apply

在 leancloud 中注册账号,然后申请免费应用,即可获得对应的 appIdappKeyserverURLs 可使用提供的共享地址,不过最好绑定二级域名,使用自己的域名地址。

  1. 进入 leancloud 控制台,创建应用(免费的即够用)
  2. 在应用设置 - 应用 Keys 页面
  3. 复制 appIdappKeyserverURLs 作为程序的配置
  4. 你也可以在存储管理中,去管理所有的评论

License

MIT@hustcc.