react-node-google-translate

react-node-google-translate JS library on GitHub react-node-google-translate JS library on npm Download react-node-google-translate JS library

Simple Node.js library for talking to Google's Translate API from React/React-Native for free.

Version 1.0.2 License ISC
react-node-google-translate has no homepage
react-node-google-translate JS library on GitHub
react-node-google-translate JS library on npm
Download react-node-google-translate JS library
Keywords
i18nl10ngooglegoogle translate apitranslate

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