vocab-fetcher
v0.1.6
Published
Fetch Vocabulary
Maintainers
Readme
Vocab Fetcher
Fetch Vocabulary
Install
$ npm install --save vocab-fetcherAPI
.getWord(word)
var VocabFetcher = require("vocab-fetcher")
var vocabFetcher = new VocabFetcher()
vocabFetcher.getWord("ambiguous")
.then(function(wordObj){
console.log(wordObj)
})