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

@pie-players/tts-client-server

v0.3.45

Published

Client-side TTS provider that calls server API for synthesis

Downloads

1,582

Readme

@pie-players/tts-client-server

Client-side TTS provider that calls a server API for synthesis with speech marks support.

For the cross-package TTS architecture and provider layering, see TTS Architecture. This README focuses on the browser-side server provider API.

Overview

This package provides a browser-side TTS provider that offloads synthesis to a server API. The server handles provider selection (AWS Polly, Google Cloud TTS, etc.) and credential management, while the client plays audio and coordinates word highlighting.

Features

  • Server-Side Synthesis - Keeps credentials secure on server
  • Speech Marks - Precise word-level timing from server
  • Multiple Providers - Server can use Polly, Google, ElevenLabs, etc.
  • Word Highlighting - 50ms polling for smooth synchronization
  • Audio Playback - HTMLAudioElement with pause/resume
  • Blob URLs - Efficient memory management

Installation

npm install @pie-players/tts-client-server

Usage

Basic Setup

import { ServerTTSProvider } from '@pie-players/tts-client-server';
import { TTSService } from '@pie-players/pie-assessment-toolkit';

const provider = new ServerTTSProvider();

const ttsService = new TTSService();
await ttsService.initialize(provider, {
  apiEndpoint: '/api/tts',  // Your SvelteKit API route
  provider: 'polly',         // Server-side provider to use
  voiceId: 'Joanna',
  language: 'en-US',
});

// Note: `apiEndpoint`, `provider`, and `voiceId` are server-provider-specific
// options. When using TTSConfig, pass these inside `providerOptions` rather
// than as top-level fields:
//
//   const config: TTSConfig = {
//     providerOptions: {
//       apiEndpoint: '/api/tts',
//       provider: 'polly',
//       voiceId: 'Joanna',
//     },
//     language: 'en-US',
//   };

apiEndpoint is required when using ServerTTSProvider directly. Toolkit-level tools.providers.textToSpeech integration may provide a default endpoint for server-backed backends, but direct client usage should pass this explicitly.

With Authentication

await ttsService.initialize(provider, {
  apiEndpoint: '/api/tts',
  provider: 'polly',
  authToken: 'your-jwt-token',
  organizationId: 'org-123',
});

Speak with Word Highlighting

// The provider automatically coordinates word highlighting
await ttsService.speak('Hello world, this is a test.', {
  contentElement: document.getElementById('content'),
});

Transport Modes

ServerTTSProvider now supports two transport modes:

  • pie (default): POST ${apiEndpoint}/synthesize, inline base64 audio + inline speech marks
  • custom: POST to root endpoint, then fetch audioContent and JSONL marks URLs

PIE mode request

Request:

{
  "text": "Hello world",
  "provider": "polly",
  "voice": "Joanna",
  "language": "en-US",
  "rate": 1.0,
  "includeSpeechMarks": true
}

Response:

{
  "audio": "base64-encoded-audio",
  "contentType": "audio/mpeg",
  "speechMarks": [
    { "time": 0, "type": "word", "start": 0, "end": 5, "value": "Hello" },
    { "time": 340, "type": "word", "start": 6, "end": 11, "value": "world" }
  ],
  "metadata": {
    "providerId": "aws-polly",
    "voice": "Joanna",
    "duration": 1.5,
    "charCount": 11,
    "cached": false
  }
}

PIE mode response

{
  "audio": "base64-encoded-audio",
  "contentType": "audio/mpeg",
  "speechMarks": [
    { "time": 0, "type": "word", "start": 0, "end": 5, "value": "Hello" }
  ]
}

Custom mode request

{
  "text": "Hello world",
  "speedRate": "medium",
  "lang_id": "en-US",
  "cache": true
}

Custom mode response

{
  "audioContent": "https://cdn.example.com/audio.mp3",
  "word": "https://cdn.example.com/marks.jsonl"
}

Speech marks are fetched from the word URL and parsed as JSONL.

Optional voices endpoint

GET ${apiEndpoint}/voices remains optional and is only used when endpoint validation is configured with endpointValidationMode: "voices".

SvelteKit Implementation Example

See the implementation guide in tts-architecture.md.

Example route structure:

apps/<host-app>/src/routes/api/tts/
├── synthesize/+server.ts
└── voices/+server.ts

Configuration

ServerTTSProviderConfig

interface ServerTTSProviderConfig {
  apiEndpoint: string;        // API base URL (required)
  provider?: string;          // Server provider ('polly', 'google', etc.)
  transportMode?: 'pie' | 'custom';
  endpointMode?: 'synthesizePath' | 'rootPost';
  endpointValidationMode?: 'voices' | 'endpoint' | 'none';
  authToken?: string;         // JWT or API key
  includeAuthOnAssetFetch?: boolean;
  assetOrigins?: string[];    // Trusted origins for Authorization header
  organizationId?: string;    // For multi-tenant setups
  headers?: Record<string, string>;  // Custom headers
  voiceId?: string;           // Voice ID
  language?: string;          // Language code
  rate?: number;              // Speech rate (0.25-4.0)
  volume?: number;            // Volume (0-1)
}

Security

ServerTTSProvider treats apiEndpoint and authToken as host-owned. The host is responsible for authenticating /api/tts/* (session cookie, JWT, or equivalent), rate-limiting callers, and keeping vendor credentials (AWS, Google, etc.) server-side only. End-to-end guidance — including a SvelteKit hooks.server.ts sketch and rate-limit example — lives in @pie-players/tts-server-polly → INTEGRATION-GUIDE.md § Security Considerations.

The provider itself enforces one piece of security directly: it scrubs the Authorization header when following URLs returned by the TTS server that fall outside a trusted origin set.

  • assetOrigins — allow-list of origins permitted to receive the bearer token when the provider fetches custom-transport audio or speech-mark URLs. Defaults to the origin of apiEndpoint (or, for a relative apiEndpoint, window.location.origin). Non-http(s) URLs and malformed URLs are always rejected, regardless of this setting.
  • includeAuthOnAssetFetch — defaults to false. When true, the provider will forward Authorization on asset fetches only to origins in assetOrigins; off-allow-list origins are fetched without auth. Leave at the default unless your CDN / storage backend actually requires the bearer token to read assets.

See docs/tools-and-accomodations/tool_host_contract.md#backend-endpoints-for-tool-providers for the host-wide contract this provider fits into.

How It Works

  1. Client calls speak(text)
  2. Adapter builds backend-specific request payload
  3. Provider POSTs to resolved synthesis endpoint (/synthesize or root POST)
  4. Adapter normalizes response into audio + speech marks
  5. Client loads audio as Blob URL
  6. Client plays audio via HTMLAudioElement
  7. Client polls audio time every 50ms
  8. Client fires word boundary callbacks at correct times
  9. TTSService highlights words in DOM

Word Highlighting Synchronization

The provider uses a polling-based approach for reliable synchronization:

// Every 50ms, check current audio time
const currentTime = audio.currentTime * 1000; // Convert to ms

// Find words that should be highlighted
for (const timing of wordTimings) {
  if (currentTime >= timing.time) {
    onWordBoundary('', timing.charIndex, timing.length);
  }
}

This is much more reliable than browser's onboundary events (which are broken in Safari and unreliable in Chrome).

Memory Management

The provider automatically manages Blob URLs:

  • Creates Blob URL from base64 audio
  • Plays audio from Blob URL
  • Revokes Blob URL when done (frees memory)
  • Cleans up on stop/error

Error Handling

try {
  await ttsService.speak('Hello world');
} catch (error) {
  console.error('TTS failed:', error.message);
  // Fallback to browser TTS or show error
}

Browser Compatibility

  • ✅ Chrome/Edge (latest)
  • ✅ Firefox (latest)
  • ✅ Safari (latest)
  • ✅ Mobile browsers

Requires:

  • HTMLAudioElement API
  • fetch API
  • URL.createObjectURL
  • atob for base64 decoding

Performance

  • Audio caching: Server-side (Redis)
  • Blob URLs: Efficient memory usage
  • 50ms polling: Smooth highlighting without jank
  • Parallel requests: Audio + marks fetched together

License

MIT