Neutralino.storage
Neutralinojs has a built-in shared key-value storage. It's like a
global LocalStorage for all Neutralinojs modes.
Neutralino.storage exposes methods for interacting with this storage feature.
tip
The storage API persists all data records into .storage directory in the
root directory of your application. If you want to clear all data records,
delete the .storage directory.
storage.setData(key, data)
Writes data into Neutralinojs shared storage.
Parameters
keyString: A unique identifier.dataObject (optional): Data as a string. If this value isnullorundefined, the specific data record will be erased from the disk.
await Neutralino.storage.setData('userDetails',
JSON.stringify({ username: 'TestValue'})
);
storage.getData(key)
Reads and returns data for a given Neutralinojs shared storage key.
Parameters
keyString: Storage data record identifier.
Return String (awaited):
Data string of the storage record.
let data = await Neutralino.storage.getData('userDetails');
console.log(`Data: ${data}`);
storage.getKeys()
Returns all storage keys.
Return Array (awaited):
A string array of existing storage keys.
let keys = await Neutralino.storage.getKeys();
console.log('Keys: ', keys);