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

I am doing this ``` store = new Store({ name : 'encrypted_config', encryptionKey : 'test123', }); ``` When the app restarts and I try to do this ``` store =...

Hi there, This started popping up as soon as I installed - have tried everything to get to the bottom of the issue, changing webpack configs etc. ` ERROR in...

https://github.com/typicode/lowdb

Hello, seems like this library doesn't work anymore with recent electron ecosystem. ``` // preload.ts (also tried this in electron's main, where window is created) const Store = require("electron-store"); Store.initRenderer();...

I've electron app with Angular frontend. I'm trying to use Store in the renderer process as described in the [README](https://github.com/sindresorhus/electron-store#initrenderer) file Here is my code for preload and electron-main.js: preload.js...

Im having an issue where my electron app wont start because of this error: ```powershell [1] Error: EEXIST: file already exists, mkdir 'C:\Users\\AppData\Roaming\Electron' [1] at mkdirSync (fs.js:731:3) [1] at Object.fs.mkdirSync...

Hello ! I am trying to use a fork of [conf](https://github.com/sindresorhus/conf) package (in order to test my changes before making a pull request), but `electron-store` still uses an outdated version...

Hello 👋 To my understanding, you, @sindresorhus, use internally your own package `dot-prop`? According to my `package-lock.json`, that package is included as `"dot-prop": "^6.0.1"`. However, I need to access array...

Is it possible to make a field required in provided schema? ```js const schema = { foo: { type: 'number', maximum: 100, minimum: 1, default: 50 }, bar: { type:...

Hello, I've got defaults setup as such : ``` { "initialized": false, ... "options": { "admin": { "darkmode": true, ... }, "items": { "preview": false, ... } } } ```...