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

noapi-speech2text

v1.0.3

Published

Speech recognition library that uses web-based services to convert speech to text in multiple languages

Downloads

9

Readme

NoApi-SpeechToText 🎙️✨

A simple speech recognition library that uses Bing Translator's web interface to convert speech to text in multiple languages.

Example video: https://www.youtube.com/embed/-dzRtd6fAqU?si=0KtpN0vDuOISEzuF

Installation 📦

npm install noapi-speech2text

Features 🚀

  • ✅ Supports multiple languages
  • ✅ Real-time speech recognition
  • ✅ Easy-to-use API with event-based architecture
  • ✅ Customizable settings
  • ✅ No API key required

Usage 🔧

const SpeechToText = require('noapi-speech2text');

// Create instance with options (or use defaults)
const speechToText = new SpeechToText('en');

// Listen for speech events
speechToText.on('speech', (text) => {
  console.log('Recognized speech:', text);
});

// Start speech recognition
speechToText.start()
  .then(() => console.log('Speech recognition service initialized'))
  .catch(err => console.error('Failed to start speech recognition:', err));

// When you want to stop:
// speechToText.stop();

Constructor Options

/**
 * @param {string} languageCode - Language code (e.g., 'en', 'tr', etc.)
 * @param {string[]} chromeargs - Additional Chrome arguments (e.g., ['--mute', '--no-stdout'])
 * @param {number} checkInterval - Interval to check for new speech in ms (default: 700)
 * @param {boolean} debug - Enable debug mode (default: false)
 * @example
 * const speechToText = new SpeechToText('en', ["--no-sandbox"], 700, true);
 */

⚠️ Legal Warning

This software automates interactions with Microsoft's Bing Translator web interface:

  • No official API or partnership with Microsoft is involved
  • Microsoft may change their web interface or block automated access at any time
  • The developer is not affiliated with Microsoft or Bing
  • Using this software may violate Microsoft's terms of service
  • Users are responsible for compliance with all applicable terms and conditions
  • May stop working if Bing Translator's web interface changes

Use at your own risk.


NoApi-SpeechToText 🎙️✨

Çoklu dillerde konuşmayı metne dönüştürmek için Bing Translator web arayüzünü kullanan basit bir konuşma tanıma kütüphanesi.

Örnek video: https://www.youtube.com/embed/-dzRtd6fAqU?si=0KtpN0vDuOISEzuF

Kurulum 📦

npm install noapi-speech2text

Özellikler 🚀

  • ✅ Çoklu dil desteği
  • ✅ Gerçek zamanlı konuşma tanıma
  • ✅ Olay tabanlı mimari ile kullanımı kolay API
  • ✅ Özelleştirilebilir ayarlar
  • ✅ API anahtarı gerektirmez

Kullanım 🔧

const SpeechToText = require('noapi-speech2text');

// Seçeneklerle örnek oluşturun (veya varsayılanları kullanın)
const speechToText = new SpeechToText('tr');

// Konuşma olaylarını dinleyin
speechToText.on('speech', (text) => {
  console.log('Tanınan konuşma:', text);
});

// Konuşma tanımayı başlatın
speechToText.start()
  .then(() => console.log('Konuşma tanıma servisi başlatıldı'))
  .catch(err => console.error('Konuşma tanıma başlatılamadı:', err));

// Durdurmak istediğinizde:
// speechToText.stop();

Yapılandırıcı Seçenekleri

/**
 * @param {string} languageCode - Dil kodu (örn. 'en', 'tr', vb.)
 * @param {string[]} chromeargs - Ek Chrome argümanları (örn. ['--mute', '--no-stdout'])
 * @param {number} checkInterval - Yeni konuşmaları kontrol etme aralığı (ms) (varsayılan: 700)
 * @param {boolean} debug - Hata ayıklama modunu etkinleştirme (varsayılan: false)
 * @example
 * const speechToText = new SpeechToText('tr', ["--no-sandbox"], 700, true);
 */

⚠️ Yasal Uyarı

Bu yazılım, Microsoft'un Bing Translator web arayüzü ile etkileşimleri otomatikleştirir:

  • Microsoft ile resmi bir API veya ortaklık içermemektedir
  • Microsoft, web arayüzünü değiştirebilir veya otomatik erişimi istediği zaman engelleyebilir
  • Geliştirici, Microsoft veya Bing ile hiçbir şekilde bağlantılı değildir
  • Bu yazılımın kullanılması Microsoft'un hizmet şartlarını ihlal edebilir
  • Kullanıcılar, tüm geçerli şartlara ve koşullara uygunluktan sorumludur
  • Bing Translator'ın web arayüzü değişirse çalışmayı durdurabilir

Kullanım sorumluluğu size aittir.

Developed by DeveloperKubilay ❤️