Skip to content

cpetzold/node-wordnik

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
});

About

A minimalistic node.js client for the Wordnik API

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published