Skip to main content
Home
Works with
It is unknown whether this package works with Cloudflare Workers, Node.js, Deno, Bun, Browsers
It is unknown whether this package works with Cloudflare Workers
It is unknown whether this package works with Node.js
It is unknown whether this package works with Deno
It is unknown whether this package works with Bun
It is unknown whether this package works with Browsers
JSR Score41%
Downloads5/wk
Publisheda year ago (3.2.2)

我就懶,無依賴的,簡繁轉換解決方案。no dependencies, converting simplified to traditional and traditional to simplified.

chinese-conv 無依賴的 簡繁轉換

Note

我就懶,無依賴的,簡繁轉換解決方案。

no dependencies, converting simplified to traditional and traditional to simplified


Important

單純地一對一字符,字典互換,並且字典年代久遠窩都沒有更新

但這包窩私人偶爾會使用,我需求不多,堪用了

如果你需要 「異體字轉換、地區習慣用詞轉換」 請參考 opencc

Important

just a simple one-to-one character swap, and the dictionary hasn't been updated for a long time

but this private space is used occasionally, I don't need much, it's enough

if you need "variant character conversion and regional term conversion," please refer to opencc


Example

https://codesandbox.io/p/devbox/chinese-conv-tyrsvs

Install

# bun
pnpm add chinese-conv

# or...
bun add chinese-conv
yarn add chinese-conv
npm add chinese-conv

Usage

// ESM
import { tify, sify, tifyJson } from 'chinese-conv'

// or...
import { tify, sify, tifyJson } from 'chinese-conv/dist'

Methods

tifyJson 繁體化整個 js#Array 或 js#Object

import { tifyJson } from 'chinese-conv'

const chsAsObject = {
  text1: '所谓知己知彼百战不殆',
  text2: '作为星际2职业选手',
  text3: '他们在平时练习中不仅要练好自己的本族',
  text4: '还会经常选择其他两个族进行练习',
}
const chtAsObject = {
  text1: '所謂知己知彼百戰不殆',
  text2: '作為星際2職業選手',
  text3: '他們在平時練習中不僅要練好自己的本族',
  text4: '還會經常選擇其他兩個族進行練習',
}

expect(tifyJson(chsAsObject)).toEqual(chtAsObject)

tify 繁體化字串

import { tify, sify } from 'chinese-conv'

// 正體中文化
const text = tify(
  '所谓知己知彼百战不殆,作为星际2职业选手,他们在平时练习中不仅要练好自己的本族,还会经常选择其他两个族进行练习,这样可以更加了解本族之外两个种族的运营流程、弱点、真空期等。因此不只有Flash,全世界许多职业选手都会在练习时偶尔使用下别的种族,这也是他们众多练习手段的一种。',
)

sify 簡體化字串

import { tify, sify } from 'chinese-conv'

// 簡體中文化
const text = sify(
  '所謂知己知彼百戰不殆,作為星際2職業選手,他們在平時練習中不僅要練好自己的本族,還會經常選擇其他兩個族進行練習,這樣可以更加了解本族之外兩個種族的運營流程、弱點、真空期等。因此不只有Flash,全世界許多職業選手都會在練習時偶爾使用下別的種族,這也是他們眾多練習手段的一種。',
)

字典來源

https://github.com/tongwentang/tongwen-dict

Report package

Please provide a reason for reporting this package. We will review your report and take appropriate action.

Please review the JSR usage policy before submitting a report.

Add Package

deno add jsr:@aqzhyi/chinese-conv

Import symbol

import * as chinese_conv from "@aqzhyi/chinese-conv";
or

Import directly with a jsr specifier

import * as chinese_conv from "jsr:@aqzhyi/chinese-conv";

Add Package

pnpm i jsr:@aqzhyi/chinese-conv
or (using pnpm 10.8 or older)
pnpm dlx jsr add @aqzhyi/chinese-conv

Import symbol

import * as chinese_conv from "@aqzhyi/chinese-conv";

Add Package

yarn add jsr:@aqzhyi/chinese-conv
or (using Yarn 4.8 or older)
yarn dlx jsr add @aqzhyi/chinese-conv

Import symbol

import * as chinese_conv from "@aqzhyi/chinese-conv";

Add Package

vlt install jsr:@aqzhyi/chinese-conv

Import symbol

import * as chinese_conv from "@aqzhyi/chinese-conv";

Add Package

npx jsr add @aqzhyi/chinese-conv

Import symbol

import * as chinese_conv from "@aqzhyi/chinese-conv";

Add Package

bunx jsr add @aqzhyi/chinese-conv

Import symbol

import * as chinese_conv from "@aqzhyi/chinese-conv";