# Overview - A lightweight, up to date speech recognizer in the browser with total gzipped size of **under a megabyte** (725 KB) - Built from scratch, inspired by [vosk-browser](https://github.com/ccoreilly/vosk-browser) # Vosklet ... - Is regularly maintained - Support multiple models - Include model storage management - Include model ID management (for updates) - Wraps all Vosk's functionaly # Basic usage (microphone recognition in English) - Result are logged to the console. - Copied from *examples/fromMic.html* - **Note: The example folder and this piece of code uses *Examples/Vosklet.js* because I can't set the Response headers for my model for browsers to decompress correctly. Instead, I used DecompressionStream to decompress manually, so *Examples/Vosklet.js* only works for the examples. In production, use the top-level Vosklet.js instead.** ```html ```