Getting Started with the Kendo UI File Saver
This guide provides the information you need to start using the Kendo UI File Saver—it includes instructions about the installation approach, how to import the required methods, and links to additional resources.
Start Free TrialInstalling the Package
To add the Kendo UI File Saver package, run the following command:
sh
npm install --save @progress/kendo-file-saver
Using the Package
-
After successfully installing the File Saver, import the required individual functions from the package:
shimport { saveAs, encodeBase64 } from '@progress/kendo-file-saver';
-
Then you can save a file on the client machine, by using the
saveAs
method, and pass a valid data URI and a file name:jsconst dataURI = "data:text/plain;base64," + encodeBase64("Hello World!"); saveAs(dataURI, "test.txt");
Dependencies
The Kendo UI File Saver package has no external dependencies.