Socket
Socket
Sign inDemoInstall

react-tts

Package Overview
Dependencies
3
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    react-tts

Flexible Text-to-speech adapter for React


Version published
Weekly downloads
61
increased by35.56%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

react-tts

A flexible SpeechSynthesis adapter for React.

  • Browser compatibility

  • Examples

Use

npm install react-tts or yarn add react-tts


Components

TtsButton

props - includes TtsBase props
  • cancel
    • component returned when variant is set as 'cancel'
  • pause
    • component returned when variant is set as 'pause'
  • resume
    • component returned when variant is set as 'resume'
  • speak
    • component returned when variant is set as 'speak'
  • variant
    • 'cancel' | 'speak' | 'pause' | 'resume' defaults to 'speak'

Tts

Higher-order component provides onClick TtsBase functionality.

props - includes TtsBase props
  • variant
    • 'cancel' | 'speak' | 'pause' | 'resume' defaults to 'speak'

TtsBase

forwardRef functional component, see SpeechSynthesisUtterance

props
  • Component
    • The component used for the root node. Defaults to <div />
  • children
    • The content of the component.
  • autoplay
    • Tts will autoplay content, defaults to false
  • lang
    • Speech language, defaults to document.documentElement.lang
  • onEnd
    • callback when finished speaking.
  • onError
    • callback when error occurs preventing speaking.
  • onPause
    • callback when speaking is paused.
  • onResume
    • callback when paused speaking is resumed.
  • onStart
    • callback when speaking is started.
  • pitch
    • Float representing the pitch value between 0-2, defaults to 1.
  • rate
    • Float representing the rate value between 0.1-10, defaults to 1.
  • text
    • String value that is spoken and prioritized over children text content if set.
  • voice
    • The speech voice, defaults to lang default.
  • volume
    • Float representing volume between 0-1, defaults to 1.

MIT License

Keywords

FAQs

Last updated on 28 May 2022

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc