• What is KendoReact
  • Getting Started
  • Server Components
  • Components
    • Animation
    • Barcodes
    • Buttons
    • Chartsupdated
    • Common Utilities
    • Conversational UIupdated
    • Data Gridupdated
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Formupdated
    • Ganttupdated
    • Gauges
    • Indicators
    • Inputsupdated
    • Labels
    • Layoutupdated
    • ListBox
    • ListView
    • Map
    • Notification
    • OrgChartnew
    • PDF Processing
    • PDFViewer
    • PivotGrid
    • Popup
    • Progress Bars
    • Ripple
    • Scheduler
    • ScrollView
    • Sortable
    • Spreadsheetupdated
    • TaskBoard
    • Tooltips
    • TreeList
    • TreeViewupdated
    • Upload
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • Updates
  • Troubleshooting

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.


Installing the Package

To add the Kendo UI File Saver package, run the following command:

npm install --save @progress/kendo-file-saver

Using the Package

  1. After successfully installing the File Saver, import the required individual functions from the package:

    import { saveAs, encodeBase64 } from '@progress/kendo-file-saver';
  2. 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:

    const dataURI = "data:text/plain;base64," + encodeBase64("Hello World!");
    saveAs(dataURI, "test.txt");

Dependencies

The Kendo UI File Saver package has no external dependencies.

Next Steps