malandrina / word-reference.js

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

word-reference.js

An unpublished Node.js module for facilitating server-side interactions with the WordReference JSON API.

Usage

var wordReference = require("./word-reference");
var options = { from: "it", to: "en", term: "malandrina" };
var result;
wordReference.getTranslations(options).then(function(translations) {
  result = translations;
});

Running tests

$ make test

About


Languages

Language:JavaScript 98.5%Language:Makefile 1.5%