1.0.15 • Published 2 years ago

ici4j-japan v1.0.15

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

ici4j-japan

The ici4j-japan library exported as Node.js modules.

The ici4j-japan library is com.ibm.icu library running in java which is called and used on javascript

Installation

Using npm:

$ npm i ici4j-japan
$ npm i --save ici4j-japan

Environment settings dependencies

1. npm install -g node-gyp

2. Install java SDK (version >= 22)

Link download SDK java (click)

Example in Debian operating system (version 23):

$ apt-get update
$ wget https://download.oracle.com/java/23/latest/jdk-23_linux-x64_bin.deb
$ dpkg -i jdk-23_linux-x64_bin.deb

3. Install python (version current 3.12)

Link download python (click)

Using ici4j-japan in projects:

js

const ici4jJapan = require("ici4j-japan");
const input = "こんにちは";
ici4jJapan.convertToNFC(input).then((result) => {
  console.log(result); // result: コンニチハ
});

Or

const { convertToNFC } = require("ici4j-japan");
const input = "こんにちは";
convertToNFC(input).then((result) => {
  console.log(result); // result: コンニチハ
});

ts

import * as ici4jJapan from "ici4j-japan";
const input = "こんにちは";
ici4jJapan.convertToNFC(input).then((result) => {
  console.log(result); // result: コンニチハ
});

Or

import { convertToNFC } from "ici4j-japan";
const input = "こんにちは";
convertToNFC(input).then((result) => {
  console.log(result); // result: コンニチハ
});
1.0.15

2 years ago

1.0.14

2 years ago

1.0.13

2 years ago

1.0.12

2 years ago

1.0.11

2 years ago

1.0.10

2 years ago

1.0.9

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago