-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #228 from mziyut/create-pull-request/patch-pull-ar…
…ticles Pull articles
- Loading branch information
Showing
1 changed file
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
--- | ||
title: ijaiji-node を作成した | ||
tags: | ||
- Node.js | ||
- npm | ||
- itaij | ||
private: false | ||
updated_at: '2024-05-29T01:32:36+09:00' | ||
id: 60287124ba4f098d1fcf | ||
organization_url_name: ateam-commerce-tech | ||
slide: false | ||
ignorePublish: false | ||
--- | ||
|
||
## はじめに | ||
|
||
タイトルの通り、ijaiji-node を必要になったので作成した。 | ||
異体字を正体字に変換するためのパッケージ。 | ||
|
||
https://www.npmjs.com/package/itaiji | ||
|
||
https://github.com/mziyut/itaiji-node/ | ||
|
||
## なぜ作成したか | ||
|
||
元々 Ruby(Gem) には変換ライブラリが存在する事は認識していたが Node.js/npm パッケージとして存在していなかった。無いなら作るかくらいの気持ちでさっと作りました。 | ||
|
||
https://github.com/camelmasa/itaiji | ||
|
||
ちなみに、 Ruby 以外に Rust/Python/PHP も存在しています。 | ||
|
||
https://github.com/camelmasa/itaiji-rust | ||
|
||
https://github.com/yamamotoj/itaijipy | ||
|
||
https://github.com/masanork/ikc | ||
|
||
https://github.com/xearts/itaiji-converter | ||
|
||
## 使い方 | ||
|
||
npm や yarn 等のパッケージマネージャから ijaiji を install | ||
|
||
```sh | ||
npm install itaiji | ||
# or | ||
yarn install itaiji | ||
``` | ||
|
||
それぞれ読み込んで使うだけにしてあります。 | ||
|
||
```js | ||
var itaijiNode = require('itaiji'); | ||
|
||
itaijiNode.seijitai('亞'); // -> "亜" | ||
``` | ||
|
||
```js | ||
import { seijitai } from 'itaiji'; | ||
|
||
seijitai('亞'); // -> "亜" | ||
``` | ||
|
||
参考にした Ruby で作られている `camelmasa/itaiji` は、正字体 から 異体字 への変換もサポートしていますが、 ijaiji-node はサポートしていません。必要になったら作ります。 | ||
|
||
## Ref | ||
|
||
https://camelmasa.hatenadiary.org/entry/20140630/1404142161 |