Skip to content

BooDoo/node-wordnik-as-promised

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-wordnik

A simple, Promise-based node.js client for the Wordnik API http://developer.wordnik.com/

Based on node-wordnik.

Example

// var APIKEY = process.env.WORDNIK_KEY
var Wordnik = require('wordnik-as-promised'),
    wn;

wn = new Wordnik(APIKEY);

wn.word('promise', {
  useCanonical: true,
  includeSuggestions: true
})
.tap(console.log)
.then(function(word) {
  return word.related({
    limitPerRelationShipType: 2
  });
)
.tap(console.log)
.then(function(groups) {
  // do something with these, maybe?
  return groups;
})
.catch(console.error);

wn.definitions('compliance').then(console.log, console.error);

About

Minimalistic promise-based node.js client for the Wordnik API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%