/node-google-translate-skidz

Simple Node.js library for talking to Google's Translate API for free.

Primary LanguageJavaScriptMIT LicenseMIT

Google Translate Node JS

Google Translate API client for node.js.

Install

npm install node-google-translate-skidz --save

USAGE

var translate = require('node-google-translate-skidz');

translate({
  text: 'text',
  source: 'es',
  target: 'en'
}, function(result) {
  console.log(result);
});