1.0.2 • Published 5 years ago

react-node-google-translate v1.0.2

Weekly downloads
8
License
ISC
Repository
github
Last release
5 years ago

React Google Translate Build Status

Google Translate API client for React/React-Native.

Install

npm install react-node-google-translate --save

USAGE

var translate = require('react-node-google-translate');

translate({
  text: 'text',
  source: 'es',
  target: 'en'
}, function(result) {
  console.log(result);
});