https://github.com/rmlzy/convert-chinese-chars
中文简体、繁体转换工具, 支持浏览器端和 Node 端.
https://github.com/rmlzy/convert-chinese-chars
Last synced: about 2 months ago
JSON representation
中文简体、繁体转换工具, 支持浏览器端和 Node 端.
- Host: GitHub
- URL: https://github.com/rmlzy/convert-chinese-chars
- Owner: rmlzy
- License: mit
- Created: 2021-07-16T07:06:32.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-07-16T07:21:07.000Z (almost 4 years ago)
- Last Synced: 2025-03-21T21:51:13.263Z (2 months ago)
- Language: JavaScript
- Size: 147 KB
- Stars: 4
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
中文简体、繁体转换工具, 支持浏览器端和 Node 端.
> 中文簡體、繁體転換工具, 支持瀏覧器端和 Node 端.
## 如何使用
### Node 环境
```bash
$ npm i --save convert-chinese-chars
``````js
const { toTraditional, toSimplified } = require('convert-chinese-chars');// 简体中文 => 繁体中文
console.log(toTraditional('中华人民共和国')); // 输出: 中華人民共和國// 繁体中文 => 简体中文
console.log(toSimplified('中華人民共和國')); // 输出: 中华人民共和国
```### 浏览器环境
注: 因为内置词库的原因, 体积比较大, 大概 85kb.使用 script 标签加载 `build/convert-chinese-chars.min.js` 后, 调用 `window.ConvertChineseChars` 即可, 示例代码如下:
```html
Demo
const Converter = window.ConvertChineseChars;// 简体中文 => 繁体中文
console.log(Converter.toTraditional('中华人民共和国')); // 输出: 中華人民共和國// 繁体中文 => 简体中文
console.log(Converter.toSimplified('中華人民共和國')); // 输出: 中华人民共和国
```
## 声明
词库来自 [funNLP](https://github.com/fighting41love/funNLP/blob/master/data/%E7%B9%81%E7%AE%80%E4%BD%93%E8%BD%AC%E6%8D%A2%E8%AF%8D%E5%BA%93/fanjian_suoyin.txt)## License
[MIT](./LICENSE)