yawm
v0.7.1
Published
Yet Another Wordnik Module.
Downloads
7
Maintainers
Readme
Yet Another Wordnik Module (YAWM)
A module to expose the methods of the Wordnik's API (http://developer.wordnik.com/). It uses request-promise-native to handle API calls.
Installation
npm install yawm
Basic usage
const Yawm = require('yawm');
const yawm = Yaml(APIKEY);
yawm.words.randomWord().then( (response) => {
console.error(response);
}).catch( (error) => {
console.error(error);
});