You can easily integrate Local Storage actions into the applications you develop on the Kuika platform. It allows you to store data locally in the user's browser and access it quickly when needed. For example, you can temporarily store user information during the process of filling out a form or provide recommendations based on previous actions taken in the app. Local Storage actions improve the user experience by enabling offline access and ensure that data is retained even after the browser is closed. It increases the functionality of your application, making it more user-friendly and performant, especially when data needs to be stored permanently.
The actions offered through the Local Storage system actions in Kuika are as follows:
Write To Session Storage:This is the action that writes a specific data to the browser's Session Storage for the duration of the session. The data is stored until the browser is closed; it is deleted when the browser is closed.
Write To Local Storage:An action that permanently writes data to the browser's Local Storage. Even if the browser is closed, the data is not deleted and the user can access it at any time.
Read From Session Storage:Reads data previously stored in the browser's Session Storage. It provides access to the current data during the session.
Read From Local Storage: An action that reads data that is permanently stored in the browser's Local Storage. The data can be accessed even if the browser is restarted.
Delete From Session Storage:This action deletes specific data stored in the browser's Session Storage. The deletion can be performed without closing the browser.
Delete From Local Storage:Allows you to delete specific data stored in the browser's Local Storage. Permanently stored data can be removed manually.