Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 486 Bytes

README.md

File metadata and controls

23 lines (17 loc) · 486 Bytes

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