npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

translate-audio

v1.0.7

Published

translate-audio helps you translate multiple languages and create audio for that language

Readme

translate-audio

A JavaScript library for translating from text to audio or new language follow text or vocab. Supports multiple ReactJs, NextJS and NodeJS

Installation

You can install the translate-audio library using npm:

# npm install translate-audio
# yarn add  translate-audio

Features

Usage

translate("student", "vi").then(console.log);
translateExactly("student", { from: "en", to: "ja" }).then(console.log);
translateHaveSound("học sinh", "en").then(console.log);
translateHaveSoundWithCurrent("student", { from: "en", to: "ja" })
.then(
  console.log
);

translateHaveSound

import {translateHaveSound} from "translate-audio";

//Ex1 ->translateHaveSound return Promise

translateHaveSound("i find my love", "en")
.then(console.log)
.catch(console.error);


->😊😊 Result
{
  sound: 'https://drive.google.com/uc?id=1o4_JfZ8QVCx8rsH05KWiM7VhmdhNQnrb', // This is sound you can use Audio Tag to listen
  idSound: '1o4_JfZ8QVCx8rsH05KWiM7VhmdhNQnrb',
  vocab: 'i find my love',
  vocab_translate: 'i find my love',
  lang: 'en',
  country: 'English',
  statusCode: 200
}

//Ex2 ->translateHaveSound return Promise

translateHaveSound("i find my love", "vi")
.then(console.log)
.catch(console.error);

->😊😊 Result
{
  sound: 'https://drive.google.com/uc?id=1BN01JNUrsPFO1poZaDjcv6QEYuSgbQQS',
  idSound: '1BN01JNUrsPFO1poZaDjcv6QEYuSgbQQS',
  vocab: 'i find my love',
  vocab_translate: 'Tôi tìm thấy tình yêu của tôi',
  lang: 'vi',
  country: 'Việt Nam',
  statusCode: 200
}

translateHaveSoundWithCurrent

import {translateHaveSoundWithCurrent} from "translate-audio";

//Ex1 ->translateHaveSoundWithCurrent return Promise

translateHaveSoundWithCurrent("student", { from: "en", to: "vi" })
.then(console.log)
.catch(console.error);


->😊😊 Result
{
  sound: 'https://drive.google.com/uc?id=1rTlSyknoTfuxRQp5Ul5YI1eofGJDKYWL',
  idSound: '1rTlSyknoTfuxRQp5Ul5YI1eofGJDKYWL',
  vocab: 'student',
  vocab_translate: 'học sinh',
  lang: 'vi',
  country: 'Việt Nam',
  lang_current: 'en',
  country_current: 'English',
  statusCode: 200
}

//Ex2

translateHaveSoundWithCurrent("student", { from: "en", to: "ja" })
.then(console.log)
.catch(console.error);

->😊😊 Result
{
  sound: 'https://drive.google.com/uc?id=1dHLTAM2mTtgKbUIfW9SgXXURPv4WKt2F',
  idSound: '1dHLTAM2mTtgKbUIfW9SgXXURPv4WKt2F',
  vocab: 'student',
  vocab_translate: '学生',
  lang: 'ja',
  country: 'Japanese',
  lang_current: 'en',
  country_current: 'English',
  statusCode: 200
}

translate

import {translate} from "translate-audio";

->⚡translate return Promise

translate("contact", "vi")
.then(console.log)
.catch(console.error);


->😊😊 Result
{
  vocab: 'học sinh',
  vocab_translate: 'pupil',
  country: 'English',
  lang: 'en',
  statusCode: 200
}

translateExactly

import {translateExactly} from "translate-audio";

->⚡translateExactly return Promise

translateExactly("học sinh", { from: "vi", to: "uk" })
.then(console.log)
.catch(console.error);


->😊😊 Result
{
  vocab: "học sinh",
  vocab_translate: "учень",
  lang: "uk",
  country: "Ukrainian",
  lang_current: "vi",
  country_current: "Việt Nam",
  statusCode: 200
}

How to use sound in audio tag

- HTML AUDIO>
 <audio controls>
    <source
      type="audio/ogg"
      src="https://drive.google.com/uc?id=1FRlMb51QHpmwjmKLmIDpZmgjvFy-B66k"
    />
    <source
      type="audio/mpeg"
      src="https://drive.google.com/uc?id=1FRlMb51QHpmwjmKLmIDpZmgjvFy-B66k"
   />
     Your browser does not support the audio tag.
 </audio>

Thanks for using my library

  • You can use react-swisskit (My package 😊😊😊😊😊😊)