Socket
Socket
Sign inDemoInstall

baidu-translate-api-temp

Package Overview
Dependencies
59
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    baidu-translate-api-temp

A free and unlimited API for Baidu Translate


Version published
Weekly downloads
2
increased by100%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

baidu-translate-api npm

A free and unlimited API for Baidu Translate

Translations

  • 中文

Install

npm install --save baidu-translate-api 

or

yarn add baidu-translate-api

Usage

const translate = require("baidu-translate-api");

translate("让我们来翻译吧!").then(res => {
    console.log(res.trans_result.dst);
    // Let's translate it!
});

API

translate(query, options)

query

Type: String

The text to be translated

options

Type: Object

  • from

    Type: String Default: auto

    The language in which the query text or auto. Contain in Languages

  • to

    Type: String Default: en

    The language in which the text should be translated. Contain in Languages

  • requestOpts

    Type: RequestOptions Default: {}

    reference request options

Returns an object:

  • from - The lanuage in which the query text.

  • to

  • trans_result (object)

    • dst - The translation
    • src - The source (equal to query)

setGlobalConfig(config)

namedesc
useLocalStorestore the token config in memory. default: false.

Languages

abbrname
autoAutomatic detection
zhChinese
enEnglish
yueCantonese
wywClassical Chinese
jpJapanese
korKorean
fraFrench
spaSpanish
thThai
araArabic
ruRussian
ptPortuguese
deGerman
itItalian
elGreek language
nlDutch
plPolish
bulBulgarian
estEstonian
danDanish
finFinnish
csCzech
romRomanian
sloSlovenia
sweSwedish
huHungarian
chtTraditional Chinese
vieVietnamese

AFTERWORD

If this repo helped you, give me a star and it's the greatest encouragement to me.

Keywords

FAQs

Last updated on 29 Jul 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc