levmyshkin/google-translate

Node.js service for Google Translate

Installs: 150

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Language:JavaScript

Type:drupal-library

1.0.2 2023-11-05 13:52 UTC

This package is auto-updated.

Last update: 2024-11-05 16:05:01 UTC


README

It's a Drupal library for getting translation from Node.js service. It depends on iamtraction/google-translate npm package: https://www.npmjs.com/package/@iamtraction/google-translate https://github.com/iamtraction/google-translate

Installation and run Node.js service

Run these commands:

npm install
npm start

Usage

See Translator.postman_collection.json with POST request: http://localhost:8000

Langcodes must be ISO-639 codes: https://cloud.google.com/translate/docs/languages

with x-www-form-urlencoded data: translateText: Hello translateFrom: en translateTo: ru

Run node.js service in background

You can run translation node.js service in background or even on system start up:

npm install pm2@latest -g
yarn global add pm2
pm2 start index.js

More info about PM2: https://pm2.keymetrics.io/

Saving the app list to be restored at reboot.

Once you have started all desired apps, save the app list, so it will respawn after reboot:

pm2 save