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 🙏

© 2026 – Pkg Stats / Ryan Hefner

chem-pinyin

v0.1.3

Published

Pinyin

Readme

本安装包仅公司内部使用,源码部分参考chinese-to-pinyin库,但在开发过程出现引入仓库在IE浏览器挂掉的问题,所以重新对代码进行rollup打包操作, 也特别感谢@zhujun24为我们的开发提供便利

安装

npm install chem-pinyin --save

使用

// 引入
import chemPinyin from "chem-pinyin";

// 普通引用
chemPinyin("今天天气真好");   //  jīn tiān tiān qì zhēn hǎo

// 多音字
chemPinyin("蚌埠六安哪吒都灵") // bèng bù lù ān né zhā dū líng

// 去声调
chemPinyin('今天天气真好', {removeTone: true}) // jin tian tian qi zhen hao

// 声调转数字
chemPinyin('今天天气真好', {toneToNumber: true}) // jin1 tian1 tian1 qi4 zhen1 hao3

// 仅数字声调
chemPinyin('今天天气真好', {toneToNumberOnly: true}) // 1 1 1 4 1 3

// 去空格
chemPinyin('今天天气真好', {removeSpace: true}) // jīntiāntiānqìzhēnhǎo

// 保留未转换部分
chemPinyin('1今天天气dd', { keepRest: true }) // 1jīn tiān tiān qìdd

// 首字母
chemPinyin('今天天气真好', { firstCharacter: true }) // j t t q z h

// 首字母 - 保留未转换部分
pinyin('1今2天3天4气5真6好', { keepRest: true, firstCharacter: true }) // 1j2t3t4q5z6h

options

| 配置 | 说明 | |------------------|---------| | removeTone | 去声调 | | removeSpace | 去空格 | | toneToNumber | 声调转成数字 | | toneToNumberOnly | 仅输出声调 | | keepRest | 保留未转换部分 | | firstCharacter | 仅获取首字母 |