Anagramica API wrapper.
var anagramica = require('anagramica');
anagramica.all('bread', function(error, response) {
if (error) {
throw error;
}
console.log(response);
//=> {
//=> 'all': [
//=> 'bared',
//=> 'beard',
//=> 'bread',
//=> 'debar'
//=> ]
//=> }
});$ npm install anagramicavar anagramica = require('anagramica');Given an Array or String of letters, queries Anagramica for the best case
anagram. Calls callback(error, response).
Given an Array or String of letters, queries Anagramica for every possible
anagram. Calls callback(error, response).
Queries Anagramica on whether or not String word is in the Anagramica
dictionary. Calls callback(error, response).