node-google-translate-china
v1.0.2
Published
A China fork for node-google-translate-skidz, while uses Google's Translate API for free.
Downloads
2
Maintainers
Readme
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);
});