oxford-dictionary-nodejs
Version:
A modern tiny nodeJS wrapper for the oxforddictionary.com V2 REST API.
19 lines (14 loc) • 331 B
Markdown
A modern tiny nodeJS wrapper for the oxforddictionary.com V2 REST API.
```sh
npm install oxford-dictionary-nodejs
```
```ts
import Dictionary from 'oxford-dictionary-nodejs'
const dictionary = new Dictionary({
appId: xxxx,
appKey: xxxx,
})
const entries = dictionary.entries('hello')
```