Skip to content
This repository has been archived by the owner on Oct 7, 2022. It is now read-only.

node.js 实现谷歌翻译 api,命令行工具 command line

Notifications You must be signed in to change notification settings

lqqyt2423/google-translate-cn-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

google-translate-cn-api

功能

  • node.js 实现谷歌翻译 api
  • 命令行工具 command line

命令行工具 command line

全局安装

npm install -g google-translate-cn-api

使用

translate hello world
# => 你好,世界
translate 你好,世界
# => hello world

# 自定义翻译状态
translate --to=cn hello world
translate --to=en 你好,世界

# 自定义翻译状态简写
translate -c hello world
translate -e 你好,世界

# 也可直接通过管道或重定向翻译
echo hello world | translate
cat some.txt | translate
translate < some.txt

在项目中使用

安装

npm install google-translate-cn-api --save

使用示例

const translate = require("google-translate-cn-api");

(async () => {
  // English => Chinese
  await translate('hello world', { to: 'zh-cn' })
    .then(console.info)
    .catch(console.error);

  // Chinese => English
  await translate('你好世界', { to: 'en' })
    .then(console.info)
    .catch(console.error);
})();

更多示例和输出请参考 example.js

感谢

google-translate-api

About

node.js 实现谷歌翻译 api,命令行工具 command line

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published