Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/leonardiwagner/dutch-dictionary
https://github.com/leonardiwagner/dutch-dictionary
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/leonardiwagner/dutch-dictionary
- Owner: leonardiwagner
- License: apache-2.0
- Created: 2022-04-15T14:40:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-04-15T15:05:43.000Z (over 2 years ago)
- Last Synced: 2024-08-09T09:41:30.680Z (3 months ago)
- Language: JavaScript
- Size: 53.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
//}
```