1.4.1 • Published 4 months ago

node-translates v1.4.1

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

翻译工具

本项目仅供学习参考,请勿用于商用。

本项目仅供学习参考,请勿用于商用。

本项目仅供学习参考,请勿用于商用。

目前只支持 中、英、俄、法、德、日、韩 互译

目前支持三种翻译平台 bing 百度 讯飞

例子

import { baiduTranslator, bingTranslator, iflyrecTranslator, Languages } from 'node-translates'

~(() => {
  const texts = ['你好', '口罩', '下班']
  texts.forEach(async text => {
    const res = await baiduTranslator({ text, from: Languages.ZH, to: Languages.EN })
    // { text: '你好', dst: 'Hello' };
    // { text: '口罩', dst: 'Mask' };
    // { text: '下班', dst: 'go off work' };
    console.log(res)
  })
})
1.4.1

4 months ago

1.4.0

4 months ago

1.3.3

2 years ago

1.3.2

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago