traducteur

v0.1.2
A simple Node.js client for Google's Translation API.

Traducteur

A super simple Google Translation API client for Node.js.

Example

var traducteur = require('traducteur')('API key');

traducteur.translate({
    q: 'Bonjour',
    target: 'en'
}, callback);

Usage

traducteur.translate(options, callback)

options is an object that follows Google's REST documentation. callback is a function that returns with an error if exists, otherwise a body. callback(err, body)

traducteur.detect(options, callback)

options is an object that follows Google's REST documentation. callback is a function that returns with an error if exists, otherwise a body. callback(err, body)

traducteur.languages(callback)

callback is a function that returns with an error if exists, otherwise a body. callback(err, body)

Tests

Because Google Translate's API is paid only, to have your tests pass you will have to add your API key to test/index.js. Once done, just run:

npm test
npm i traducteur

Metadata

Downloads

Maintainers