Getting Started with the KendoReact File SaverPremium
Updated on Sep 15, 2026
This article covers adding the File Saver package to your project and importing its functions.
Installing the Package
To add the Kendo UI File Saver package to your project, run the following command. The package has no external dependencies:
sh
npm install --save @progress/kendo-file-saverImporting Functions
File Saver uses named exports. Import only the functions you need:
js
import { saveAs, encodeBase64 } from '@progress/kendo-file-saver';
Check the API Reference for a complete list of exported functions.