👂 Web API Speech recognition with RxJS A RxJS wrapper around browser native SpeechRecognition Try it online Install npm i rxjs-stt Use import { listen } from 'rxjs-stt'; listen({ lang: 'en' }).subscribe(e => { if (e.type == 'result') { console.log(e.results[0][0].transcript); } }); Enjoy 🙂