storage

Store data

inMemory

Store temporary data in memory while your code is running. As soon as the window is closed, all data is lost. The data may or may not be JSON serializable.

local

Store data locally in an external file. File is created on per project basis. You can only store JSON serializable data.

global

Store data locally in an external file. Common for a system. You can only store JSON serializable data.

Last Updated: 8/22/2019, 5:46:31 PM
MIT Licensed | Copyright © 2019-present Nishkal Kashyap