You can easily integrate Local Storage actions into the applications you develop on the Kuika platform. These actions allow the user to store data locally in their browser and access it quickly when they need it.
For example:
During the process of filling out a form, you can temporarily store user information.
You can offer suggestions based on previous actions.
Local Storage actionsimprove the user experience by providing offline access and ensure that data is stored even after the browser is closed. Especially when data needs to be stored permanently, you can increase the functionality of your application, making it more user-friendly and performant.
Local Storage Actions Offered at Kuika
On the Kuika platform, you can perform the following operations through Local Storage system actions:
1. Data Write Actions
Write To Session Storage: Writes specific data to the browser's Session Storage for the duration of the session.
The data is deleted when the browser is closed.
Write To Local Storage: Writes data permanently to the browser's Local Storage.
Even if the scanner is closed, the data is stored and the user can access it at any time.
2. Data Reading Actions
Read From Session Storage: Reads data previously stored in Session Storage.
Provides access to the current data during the session.
Read From Local Storage: Reads data that is permanently stored in Local Storage.
Data can be accessed even if the scanner is restarted.
3. Data Deletion Actions
Delete From Session Storage: Deletes specific data stored in Session Storage.
The data can also be removed without closing the browser.
Delete From Local Storage: Deletes specific data stored in Local Storage.
Permanently stored data can be removed manually.
By using these actions, you can optimize data storage and management processes on the Kuika platform and increase the performance and user experience of your application.