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

@vibe2founder/audio2text

v0.1.0

Published

Converta áudio em texto com reconhecimento de voz multilíngue de alta precisão usando modelos de machine learning open-source

Readme

🎵 audio2text

TypeScript Zero Dependencies License Bun Event Sourcing Proxy

Transcriber — Biblioteca TypeScript de código aberto, focada em transcrição de áudio para texto localmente usando o whisper.cpp sob o motor do Node.js. Sem dependências pesadas, sem mágica negra, apenas pura eficiência open-source!

🔗 Veja o nosso CHANGELOG.md para acompanhar as atualizações mais recentes.


🚀 Como Funciona

A ideia do audio2text é fornecer um wrapper leve e seguro para interagir de forma performática com a interface de linha de comando (CLI) nativa construída em cima do projeto original whisper.cpp. Em vez de re-implementar a complexidade inferencial de modelos do zero em Node, focamos em orquestrar tudo diretamente com o executável compilado do Whisper.

Ele garante que você consiga baixar modelos (models/ggml-base.bin), mapeá-los via arquivo de configuração ou chamada direta e disparar threads em C++ gerando retornos de promessas async/await em TypeScript.

import { transcribe } from "transcriber";

const result = await transcribe({
  file: "audio.wav",
  language: "pt", // Idioma pt para transcrições limpas
  threads: 4 // Ajustando CPU local
});

console.log(result.text);

🛠️ Como foi feito

Este pacote foi desenhado respeitando os princípios da Antifragilidade impostos por nossas regras globais. Trabalhando na base do @vibe2founder, a infraestrutura é agnóstica de frameworks externos complexos. Utilizamos TypeScript transpilado para criar uma ponte segura, gerenciando side-effects puros via subprocessos do Node (child_process).

  • O pacote contém helpers como checkWhisperBinary() e checkModel() que interceptam o caminho garantindo a existência do binário ou modelo.
  • Retorna falhas antecipadas (fail-fast), como cláusulas de guarda (Object Calisthenics), quando o binário é inexistente no seu diretório de cache ou bin/ local.

🧪 Como testar

A camada local suporta testagem imediata através de uma configuração sandbox:

  1. Verifique se o binário compilado do Whisper (bin/whisper ou bin/whisper.exe) está correto.
  2. Extraia e copie os modelos desejados do repositório oficial em /models.
  3. Utilize os testes presentes no repositório com nosso runner customizado dentro do motor WSL (Windows Subsystem for Linux).
  4. Comando para testes: bun test dentro desta pasta assegura os ciclos completos de validação, caso não exista use nossa implementação @purecore/one-proof-4-all.