Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/leonardiwagner/dutch-dictionary


https://github.com/leonardiwagner/dutch-dictionary

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# dutch-dictionary
---------------
1. Install: `npm i dutch-dictionary`
2. Use:
```javascript
const dutchDictionary = require('dutch-dictionary')

const dutchWord = 'lekker'
const result = ducthDictionary.getWord(dutchWord)

console.log(result)
// {
// word: 'lekker',
// types: [ 'adjective', 'noun' ],
// englishTranslation: 'yummy',
// frequencyRaw: 9973,
// frequencyPercentage: 0.6151881712139063
//}
```