googleapi-translate

1.0.3 • Public • Published

Node Google API Translation

To translate languages with Google Translation API V2

Installation

Install this package via npm.

npm install googleapi-translate

Usage

  • import the package and create a new object by passing token
let googleApi = require("googleapi-translate")

let googleTranslation = new googleApi({token: 'this is token'})
  • default hostname is ''translation.googleapis.com'' and you can also pass hostname like this :
let googleTranslation = new googleApi({token: 'this is token', hostname: 'this is hostname'})

Translate

googleTranslation.translate("hello", "en", "ja").then((res)=>{
    console.log(res);
})

Detect the language

googleTranslation.detect("hello").then((res)=>{
    console.log(res);
})

Get supported languages

googleTranslation.getLanguages().then((res)=>{
    console.log(res);
})

Security

If you discover any security related issues, please email them to waithawoocw@gmail.com instead of using the issue tracker.

License

The MIT License (MIT). Please see the License File for more information.

Dependencies (0)

    Dev Dependencies (0)

      Package Sidebar

      Install

      npm i googleapi-translate

      Weekly Downloads

      1

      Version

      1.0.3

      License

      MIT

      Unpacked Size

      6.75 kB

      Total Files

      6

      Last publish

      Collaborators

      • waithawoo