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

`Warning: strict mode: use allowUnionTypes to allow union type keyword at "#/properties/***/properties/***" (strictTypes)` Hi, I'm getting above warning, because I set one of my properties to be either string or...

![QQ截图20200528134825](https://user-images.githubusercontent.com/25838823/83116244-16084700-a0fe-11ea-8f69-f2b747829ad8.png) ```JavaScript import ElectronStore = require('electron-store') //error ``` Version: electron-store: 5.1.1 typescript:3.9.4 node:14.3.0 electron:9.0.0

DevTools failed to load source map: Could not load content for http://localhost:8080/ajv.js.map: HTTP error: status code 404, net::ERR_HTTP_RESPONSE_CODE_FAILURE DevTools failed to load source map: Could not load content for http://localhost:8080/core.js.map:...

Hello, I 'am a confirmed Angular Developer and I'am working on an angular-electron, I want to integrate electron-store in my Angular application, but I didn't know from where should I...

this is mainjs > const { app, BrowserWindow } = require('electron') const path = require('path') const Store = require('electron-store'); Store.initRenderer(); const createWindow = () => { // Create the browser...

Hi, I met some problems,Help solve it, thank you this is my project:https://github.com/qypone/xingkong3 dev env: node:14.17.3 electron:^19.0.1 electron-store:^8.0.1 vite:^2.9.9 vite.config.js ``` import { defineConfig } from 'vite' import vue from...

```js const Store = require('electron-store'); const store = new Store(); ``` i write above code in prolad.js. In development environment, it work, but it run with error: `Cannot find module...

Greetings, I need some help :pray: I've been trying to implement some data persistance using **electron-store**. But somehow, when I import it in the renderer process, the compilation keeps failing...

It would be awesome if we can set a max age for a single key or the whole store. For example: ```js store.set('foo.bar', true, { maxAge: expirationDate }); ```

enhancement
help wanted

### Description As mentioned in the title I'm experiencing the following errors when I simply import the library in the preload script, even without initializing the store or using any...