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

electron-native-speech-backend-macos

v0.1.7

Published

macOS backend for electron-native-speech using Apple Speech framework

Readme

electron-native-speech-backend-macos

macOS backend for electron-native-speech.

Most users should not install this package directly. Install electron-native-speech and let it bring this backend in as an internal dependency.

This package provides the native macOS implementation backed by Apple's Speech framework and AVFoundation. It also ships the bundled SpeechHelper.app helper used at runtime.

Install

Most apps should install only the top-level package:

npm install electron-native-speech

Install this package directly if:

  • your environment requires an explicit backend dependency
  • you want to depend on the macOS backend explicitly
  • you are wiring the backend manually in tests or custom integrations
npm install electron-native-speech electron-native-speech-backend-macos

What this package does

  • transcribes local audio and video files on macOS
  • creates live microphone speech sessions
  • launches SpeechHelper.app as a real macOS app bundle
  • requests Speech Recognition and Microphone permissions from the helper app context
  • ships a prebuilt universal helper for Apple Silicon and Intel Macs

Direct usage

Usually, electron-native-speech loads this backend automatically on macOS and you should not reference this package directly.

If you want to wire it explicitly:

import { setBackend, transcribeFile } from "electron-native-speech"
import { MacOSSpeechBackend } from "electron-native-speech-backend-macos"

setBackend(new MacOSSpeechBackend())

const result = await transcribeFile({
  filePath: "/absolute/path/to/audio.mp3",
  locale: "en-US",
})

console.log(result.segments)

You can also use the backend class directly:

import { MacOSSpeechBackend } from "electron-native-speech-backend-macos"

const backend = new MacOSSpeechBackend()
const availability = await backend.checkAvailability()
console.log(availability)

Exports

  • MacOSSpeechBackend
  • checkAvailability()
  • transcribeFile()
  • MacOSLiveSpeechSession
  • disposeHelperProcess()

Supported formats

Direct:

  • .wav
  • .m4a
  • .mp3
  • .aac
  • .aiff
  • .caf
  • .mp4
  • .mov

Auto-converted through AVFoundation when needed:

  • .webm
  • .ogg
  • other containers AVFoundation can import

Permissions

Your host app must define:

<key>NSSpeechRecognitionUsageDescription</key>
<string>This app uses speech recognition to transcribe audio.</string>

<key>NSMicrophoneUsageDescription</key>
<string>This app accesses the microphone for live speech recognition.</string>

Notes:

  • file transcription requires Speech Recognition permission
  • live microphone requires both Speech Recognition and Microphone permission
  • the helper must run from an app bundle so macOS TCC honors those usage descriptions

Packaged Electron apps

Include SpeechHelper.app in your packaged app resources:

module.exports = {
  extraResources: [
    {
      from: "node_modules/electron-native-speech-backend-macos/bin/SpeechHelper.app",
      to: "SpeechHelper.app",
    },
  ],
}

At runtime, the backend looks in:

  • process.resourcesPath/SpeechHelper.app for packaged apps
  • the local package bin/ directory in development

Building from source

This package already ships a prebuilt helper binary.

If you need to rebuild it locally:

npm run build:all --workspace packages/backend-macos

That rebuilds the Swift helper, recreates the universal binary, codesigns the helper app, and rebuilds the TypeScript layer.

Requirements

  • macOS 13+
  • Node.js 18+
  • Electron 28+ for Electron integrations

Project docs and examples:

  • https://github.com/varaprasadreddy9676/electron-native-speech