react-native-web-speech-api

0.0.4 • Public • Published

Web Speech API for React Native

This module attempts to provide the Web Speech API for React Native.

The main purpose of the module is allow common web and pre-existing code to use the Web Speech API.

This is currently in a very early stage:

Installation

npm install react-native-web-speech-api

Dependencies

react-native-android-speech-recognizer is used to provide the Android React Native module.

Please follow its installation instructions.

Usage

import {
  isSpeechRecognitionSupported,
  SpeechRecognition
} from 'react-native-web-speech-api';
 
if (isSpeechRecognitionSupported()) {
  const recognition = new SpeechRecognition();
  recognition.onerror = event =>
    console.log("Error:", event.error);
  recognition.onresult = event =>
    console.log("Result:", event.results[0][0].transcript);
  recognition.start();
}

/react-native-web-speech-api/

    Package Sidebar

    Install

    npm i react-native-web-speech-api

    Weekly Downloads

    0

    Version

    0.0.4

    License

    MIT

    Last publish

    Collaborators

    • de-code