UNPKG

oxford-dictionary-nodejs

Version:

A modern tiny nodeJS wrapper for the oxforddictionary.com V2 REST API.

19 lines (14 loc) 331 B
# oxford-dictionary-nodejs A modern tiny nodeJS wrapper for the oxforddictionary.com V2 REST API. # Usage ```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') ```