Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/statickidz/node-google-translate-skidz

Simple Node.js library for talking to Google's Translate API for free.
https://github.com/statickidz/node-google-translate-skidz

api free google google-translate translate translation translator

Last synced: 7 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# Google Translate Node JS [![Build Status](https://travis-ci.org/statickidz/node-google-translate-skidz.svg?branch=master)](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);
});
```