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

chinese-kits

v0.2.2

Published

中国 Javascript 工具集, 旨在帮助国人更方便更快捷的处理国内特有需求的 Javascript 工具库

Downloads

4

Readme

chinese-kits

中国 Javascript 工具集, 旨在帮助国人更方便更快捷的处理国内特有需求的 Javascript 工具库

查阅文档 了解更多用法

安装

  • 使用 npm 安装
npm install chinese-kits
  • 使用 pnpm 安装
pnpm add chinese-kits
  • 使用 yarn 安装
yarn add chinese-kits
  • 国内还可以使用 cnpm 安装
cnpm install chinese-kits

使用

CDN 方式

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
  </head>
  <body>
    <script src="https://unpkg.com/chinese-kits/dist/index.iife.js"></script>
    <script>
      CHINESE_TS.getCityAlias('北京'); // => '京'
    </script>
  </body>
</html>

ESM 方式

import { getCityAlias } from 'chinese-kits';
getCityAlias('北京'); // => '京'

CJS 方式

const { getCityAlias } = require('chinese-kits');
getCityAlias('北京'); // => '京'

计划与支持

字符串

| 计划 | 支持 | | ---------------------- | ---- | | 判断是否包含中文字符串 | ✅ | | 判断是否只有中文字符串 | ✅ |

手机号

| 计划 | 支持 | | -------------------- | ---- | | 判断是否为中国手机号 | ✅ |

农历

农历日期数据来源于香港天文台(1900-2100 年)

| 计划 | 支持 | | -------------------------------------- | ---- | | 获取今天的农历日期 | ✅ | | 获取指定公历日期的农历日期 | ✅ | | 计算今天的公历日期与农历日期相差多少天 | ✅ |

证件

| 计划 | 支持 | | ------------------------ | ---- | | 判断是否为正确的身份证号 | 🚧 |

省份

| 计划 | 支持 | | -------------------- | ---- | | 根据省份名称获取简称 | ✅ | | 获取所有省份名称简称 | ✅ |

节假日

| 计划 | 支持 | | ---------------- | ---- | | 判断是否为节假日 | ✅ | | 判断是否为工作日 | 🚧 | | 判断是否为调休日 | 🚧 |

开源协议

MIT