node-google-translate-skidz
Version:
Simple Node.js library for talking to Google's Translate API for free.
24 lines (17 loc) • 486 B
Markdown
# Google Translate Node JS [](https://travis-ci.org/statickidz/node-google-translate-skidz)
Google Translate API client for node.js.
## Install
```js
npm install node-google-translate-skidz --save
```
## USAGE
```js
var translate = require('node-google-translate-skidz');
translate({
text: 'text',
source: 'es',
target: 'en'
}, function(result) {
console.log(result);
});
```