1.0.15 • Published 10 months ago

ici4j-japan v1.0.15

Weekly downloads
-
License
ISC
Repository
-
Last release
10 months 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

10 months ago

1.0.14

10 months ago

1.0.13

10 months ago

1.0.12

10 months ago

1.0.11

10 months ago

1.0.10

10 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago