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

hz2pinyin

v0.0.11

Published

汉语转换拼音

Downloads

5

Readme

zh_CN

NPM version Build Status NPM downloads Coverage Status gzip

汉字转拼音工具,基于开源字典cc-cedict解析多音字,例子

特性

  • 基本拼音
  • 支持多音字精确匹配
  • 繁体与简体同样支持
  • 多种拼音风格
  • 体积小,完整的支持为306KB,gzip压缩后121KB
  • 速度快,2万字转换大概0.58秒

安装

npm install zh_cn

用法

var zh = require("zh_cn");

console.log(zh("重庆"));    // ['chong', 'qing']
console.log(zh("重庆", {
  style: zh.STYLE_TONE, // 设置拼音风格
}));                    // ['chóng', 'qìng']
console.log(zh("hello,中国NO.1!", {
  only_chinese: true
}));                       // ['zhong', 'guo']

浏览器端

<script type="text/javascript" src="https://unpkg.com/zh_cn/dist/zh_cn.min.js"></script>
<script type="text/javascript">
   pinyin.innerText = zh('中文');
</script>

拼音风格

STYLE_NORMAL

普通风格,不带声调。

如:zhong guo

STYLE_TONE

声调风格,按照正常的汉语拼音标注。

如:zhōng guó

STYLE_TONE_NUM

声调风格,使用数字音调

如:zhong1 guo2

STYLE_FIRST_LETTER

返回每个字的首字母

如:z g

原理

多音字功能基于开源词典cc-cedict,原字典8.9M,包含11万多词条,通过裁剪以及调整搜索策略,多音字词典被压缩到133KB,用于辅助搜索的字典17KB。具体原理如下:

字典

一共存在四个字典:

  • tradition.dict.js 常用的繁体字转简体字字典
  • words.dict.js 汉字拼音字典,包括Unicode编码从4E00-9FA5范围内除46个异体字(异体字不存在标准拼音)之外的所有汉字
  • phrases.dict.js多音词字典,由cc-cedict生成
  • phrases.dict.map.js多音词字典辅助查询,保存某个字开头的多音词的长度列表,例如,”重“字,其多音词有”重复“和”重峦叠嶂“,那么会保存 {"重": "24" }

搜索策略

  1. 对于待转义的汉字,进行繁简转换,
  2. 遍历待转换的汉字,对每个字去字典phrases.dict.map.js中查找,目标文字的位置为i
  3. 如果不存在,则认为不是多音字,直接返回words.dict.js字典中该文字的第一个读音,i++
  4. 如果存在,则获取了以目标文字开头的可能的多音词的长度列表lengthList,从尾部开始遍历该列表,截取从目标文字位置i开始的长度为len的文字,去phrases.dict.js中查找,如果有结果,则返回该结果,并且i+len,继续向后转化,否则,执行步骤3

多音词字典裁剪策略

cc-cedict字典8.9M,去除掉无用信息,转化为对象后,还有3M左右。这种尺寸放在服务端可以勉强接受,但是在浏览器端,特别是移动端,一定需要进一步裁剪。

  1. 去掉单个字,因为这些信息在words.dict.js中已经有了
  2. 如果长度为2或者3的词,则保存到字典repeat中,用以后面对长词和组合词做裁剪
  3. 将类似”一日不见,如隔三秋“这样的词组分割成短词
  4. 将不包含多音字的词去掉
  5. 将包含多音字并且拼音在words.dict.js中排第一的词去掉,因为我们的搜索策略在没有多音词结果的情况下,会默认返回第一个读音
  6. 使用保存的短词,裁剪多音词字典中的长词,具体策略为:
    1. 长度小于3的直接放过,不进行裁剪
    2. 取目标词的前两个字、前三个字、后两个字、后三个字,检测是否在短词字典repeat中存在
    3. 如果存在,则将目标词剩下的部分进行判断,如果为多音词则保存到结果,并回到步骤2继续裁剪
    4. 如果不存在,则从字典中删除该词

缺陷

目前不支持轻音,为了裁剪字典尺寸