electron-store icon indicating copy to clipboard operation
electron-store copied to clipboard

Simple data persistence for your Electron app or module - Save and load user preferences, app state, cache, etc

Results 80 electron-store issues
Sort by recently updated
recently updated
newest added

Any plans to upgrade to [JSON Schema draft 2019/09](https://ajv.js.org/json-schema.html#draft-2019-09)? It unlocks some goodies including `unevaluatedProperties` which is very important when working with [schema compositions](https://json-schema.org/understanding-json-schema/reference/combining.html#combining). This is an example where not...

Currently the only available setter `Store.set()` either sets a single item or takes an object to set multiple values. Providing an object would overwrite the whole value, which is a...

Ajv updated its default values for the strict mode, resulting in a thrown error when using validation keywords it doesnt know. Solution propositions: 1. Fix conf package by disabling strict...

Hi 👋, I have upgraded the electron-store from `8.2.0` to `9.0.0`. Thanks for moving to ESM! Suddenly, Typescript complains that the methods `get`, `set`, or `delete` are not available for...

When I use the plugin in the test environment there is no problem, but the packaging formal environment prompt Cannot find module 'ajv/dist/compile/codegen', Using the electron-vite (https://electron-vite.org) build tool, what...

I want to update the maximum listeners count as I have more than 10 listeners added to the store. I get following warning, which I want to suppress: ```bash (node:33123)...

Hello, I am just wondering, if I can create multiple stores on demand, like some sort of tables in SQL, which will help reduce pressure on one file. Are there...

Hi, I am use electron-store, version 8.2.0 with node version v18.19.1 when I use follow code: `const store = new Store();` it will give me follow error: SyntaxError: Bad control...

I've just realized that the default behavior of getting undefined resolves the entire store w/any error or warning. Is an error or warning desirable for case of bad input args?...

I don't know why, but when i run my project i have this error. Versions : - `"electron": "32.0.1"` - `"electron-store": "^10.0.0"` ``` $ tsx src/scripts/modules/backend.ts file:///home/xxxxx/work/xxxxx/xxxxx/node_modules/electron-store/index.js:4 app, ^^^ SyntaxError:...