node-google-translate-skidz icon indicating copy to clipboard operation
node-google-translate-skidz copied to clipboard

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

Google Translate Node JS Build Status

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