1.0.2 • Published 6 years ago

node-google-translate-china v1.0.2

Weekly downloads
5
License
MIT
Repository
github
Last release
6 years ago

Google Translate Node JS

Google Translate API client for node.js.

Install

npm install node-google-translate-china --save

OR

yarn add node-google-translate-china

USAGE

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

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