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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@corti/dictation-web

v0.4.0

Published

Web component for Corti Dictation

Downloads

1,619

Readme

Corti Dictation Web Component

Published on npm License: MIT Get Support on Discord Live Demo

Overview

The Corti Dictation Web Component is a web component that enables real-time speech-to-text dictation using Corti's Dictation API. It provides a simple interface for capturing audio, streaming it to the API, and handling transcripts.

This library offers two approaches:

  • Opinionated Component: Use <corti-dictation> for a complete, ready-to-use solution with built-in UI
  • Modular Components: Use individual components for maximum flexibility and custom UI implementations

Note: OAuth 2.0 authentication is not handled by this library. The client must provide an authorization token or token refresh function while using the component.

Component Architecture

Opinionated Component

<corti-dictation> - A complete, ready-to-use component that includes:

  • Recording button with visual feedback
  • Settings menu for device and language selection
  • Automatic state management
  • Built-in styling and theming

This is the easiest way to get started and works out of the box.

Modular Components

For more control and flexibility, you can use individual components:

  • <dictation-root> - Context provider that manages authentication, configuration, and shared state
  • <dictation-recording-button> - Standalone recording button with audio visualization
  • <dictation-settings-menu> - Settings menu with device and language selectors
  • <dictation-device-selector> - Device selection dropdown
  • <dictation-language-selector> - Language selection dropdown

These components share state through a context system, allowing you to build custom UIs while leveraging the same underlying functionality.

Installation

Install the package using your preferred package manager:

# npm
npm i @corti/dictation-web

# yarn
yarn add @corti/dictation-web

# pnpm
pnpm add @corti/dictation-web

# bun
bun add @corti/dictation-web

Then import the module in your code. You can either use a side-effect import to auto-register the component:

// Side-effect import - automatically registers the component
import '@corti/dictation-web';

Or import the component class directly:

// Named import - register the component manually if needed
import { CortiDictation } from '@corti/dictation-web';

Alternatively, use a CDN to start quickly (not recommended for production):

<script
  src="https://cdn.jsdelivr.net/npm/@corti/dictation-web/dist/bundle.js"
  type="module"
></script>

Demo

🚀 Hosted Demo

Quick Start

Here's a simple example to get you started:

<!DOCTYPE html>
<html lang="en">
<body>
<corti-dictation id="dictation"></corti-dictation>
<textarea
  id="transcript"
  placeholder="Transcript will appear here..."
></textarea>

<script type="module">
  import '@corti/dictation-web';

  const dictationEl = document.getElementById('dictation');
  const transcriptEl = document.getElementById('transcript');

  dictationEl.addEventListener('ready', () => {
    dictationEl.accessToken = 'YOUR_AUTH_TOKEN'; // Note: Never hardcode tokens
  });

  dictationEl.addEventListener('transcript', (e) => {
    if (e.detail.data.isFinal) {
      transcriptEl.value += e.detail.data.text + ' ';
    }
  });
</script>
</body>
</html>

Modular Example

For more control, use individual components to build a custom UI:

<!DOCTYPE html>
<html lang="en">
<body>
<dictation-root id="dictationRoot">
  <dictation-recording-button></dictation-recording-button>
  <dictation-settings-menu settingsEnabled="device,language"></dictation-settings-menu>
</dictation-root>

<textarea
  id="transcript"
  placeholder="Transcript will appear here..."
></textarea>

<script type="module">
  import '@corti/dictation-web';

  const root = document.getElementById('dictationRoot');
  const transcriptEl = document.getElementById('transcript');

  root.addEventListener('ready', () => {
    root.accessToken = 'YOUR_AUTH_TOKEN'; // Note: Never hardcode tokens
  });

  root.addEventListener('transcript', (e) => {
    if (e.detail.data.isFinal) {
      transcriptEl.value += e.detail.data.text + ' ';
    }
  });
</script>
</body>
</html>

Documentation

For more detailed information, see: