1.1.4 • Published 6 months ago

ipfs-ids-find v1.1.4

Weekly downloads
-
License
MIT
Repository
-
Last release
6 months ago

ipfs-ids-find

A JavaScript module to search Chinese characters by their components using the CHISE IDS database via IPFS.

Install

npm install ipfs-ids-find

How to Use

With Promise

import { ipfsIDSfind as ids_find } from 'ipfs-ids-find';

ids_find (['金', '土', '日'])
    .then(result => console.log (result));

With async/await

import { ipfsIDSfind as ids_find } from 'ipfs-ids-find';

async function test (){
    const result = await ids_find (['金', '土', '日']);
    console.log (result);
}

test ();

Applications

A simple example of Web UI

Command Line Interface

1.1.4

6 months ago

1.1.3

6 months ago

1.1.2

6 months ago

1.1.1

6 months ago

1.1.0

6 months ago

1.0.2

6 months ago

1.0.1

6 months ago

1.0.0

6 months ago