electron-store
electron-store copied to clipboard
Simple data persistence for your Electron app or module - Save and load user preferences, app state, cache, etc
First attempt at `electron-store`. I need to have two different files, so I tried to setup the name in the constructor this way (as explained in the documentation: ``` const...
## Introduction Our company relies on `electron-store` as the primary database for our software. However, we have encountered issues related to undefined behaviors during the initial store setup. We would...
Hello, I recently discovered zod lib and used it in some projects. It's very easy create validation schemas and, in my opinion, more human friendly to use. I've migrating some...
Hi, I am building an app using the code at https://github.com/CodeDraken/electron-todo but the issue is that while running the app, I cant find any `config.json` file stored in my root...
Hi, I have been trying to get an scheme with default object properties but cant seem to get to work. Here is what I have: ``` const schema = {...
Hi I used electron-stroe in render process with this code const Store = require("electron-store"); const store = new Store(); but when debug project the line const Store = require("electron-store"); is...
I am encountering the same in #108 . The `__internal__.migrations.version` always is `8.1.01` from `electron-store` instead of my project. I have to resort to the workaround by add `projectVersion` to...
hello, I use store.delete very slowly. What's the reason? Main Process `const store = new Store({ encryptionKey: "SecondTransRecord", fileExtension: "tmp" });global.store = store;` Renderer Process `window.store.delete('potato');window.store.delete('tomato')` The wait was 503ms...
Hi how can I have same store for all instance of electron app ? and donot create new store for each instance of app
Is this intended? I feel like it is unintuitive.