Vietnamese Dictionary for Node
Using npm:
npm install @vntk/dictionary --save
.has(word:string)
Check a word is exists in dictionary
const dictionary = require('@vntk/dictionary')
dictionary.has('chào')
// true
.lookup(word:string)
Lookup word definitons
const dictionary = require('@vntk/dictionary')
let senses = dictionary.lookup('chào')
console.log(senses)
// Output
[ { example: 'chào thầy giáo ~ con chào mẹ',
sub_pos: 'Vt',
definition: 'tỏ thái độ kính trọng hoặc quan tâm đối với ai bằng lời nói hay cử chỉ, khi gặp nhau hoặc khi từ biệt',
pos: 'V' },
{ example: 'đứng nghiêm làm lễ chào cờ',
sub_pos: 'Vu',
definition: 'tỏ thái độ kính cẩn trước cái gì thiêng liêng, cao quý',
pos: 'V' },
{ example: 'chào hàng ~ lời chào cao hơn mâm cỗ (tng)',
sub_pos: 'Vu',
definition: 'mời ăn uống hoặc mua hàng',
pos: 'V' }]
Pull requests and stars are highly welcome.
For bugs and feature requests, please create an issue.