Skip to content

chise/ipfs-ids-find

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published