Simple Node.js library for talking to Google's Translate API for free.
npm install node-google-translate-skidzGoogle Translate API client for node.js.
``js`
npm install node-google-translate-skidz --save
`js
var translate = require('node-google-translate-skidz');
translate({
text: 'text',
source: 'es',
target: 'en'
}, function(result) {
console.log(result);
});
``