0.0.2 • Published 12 years ago

wordnik v0.0.2

Weekly downloads
12
License
-
Repository
github
Last release
12 years ago

node-wordnik

A minimalistic node.js client for the Wordnik API http://developer.wordnik.com/

Example

var Wordnik = require('wordnik');

var wn = new Wordnik({
    api_key: 'your api key'
});

wn.word('minimalism', {
    useCanonical: true
  , includeSuggestions: true
}, function(e, word) {
  console.log(e, word);

  word.related({
      limit: 1
  }, console.log);
});

wn.definitions('pernicious', function(e, defs) {
  console.log(e, defs);
});
0.0.2

12 years ago

0.0.1

13 years ago