Installation
Download the Invox Dictation SDK code together with the provided examples and start integrating it into your web application in simple steps.
Install the Invox Dictation SDK via npm and start integrating it into your web application in simple steps.
Install
Add the SDK to your project using npm:
npm install @invox-medical-npm/invox-dictation
Package contents
| Path | Description |
|---|---|
dist/libs/ | Compiled ESM bundle (invox.min.mjs) |
dist/types/ | TypeScript type declarations |
samples/ | Working integration examples |
Usage
Import the SDK and the UI components into your project:
import INVOX, {
BarComponent,
DictionaryDialog,
TemplatesDialog,
TransformationsDialog,
IntelligentFormattingDialog,
QualityReviewDialog,
AutoFillTemplatesDialog,
} from "@invox-medical-npm/invox-dictation";
The SDK is ESM-only — use a bundler (e.g., Vite) or a modern browser that supports <script type="module">. Component styles are injected automatically at runtime — no separate CSS imports are needed. Font resources are resolved relative to the bundle location.
Browser support
The SDK supports all modern browsers (Chrome, Firefox, Edge, Safari). A web server is required to serve the SDK files — opening index.html directly from the file system is not supported.