1.1.2 • Published 6 years ago

node-google-translate-skidz v1.1.2

Weekly downloads
1,526
License
ISC
Repository
github
Last release
6 years ago

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