Gathering detailed insights and metrics for electron-store
Gathering detailed insights and metrics for electron-store
Gathering detailed insights and metrics for electron-store
Gathering detailed insights and metrics for electron-store
electron-windows-store
Compile Electron Apps into Windows Store AppX packages
@types/electron-store
Stub TypeScript definitions entry for electron-store, which provides its own types definitions
js-message
normalized JS Object and JSON message and event protocol for ES6+ node.js, browsers, electron, vanialla js, react.js, components, actions, stores and dispatchers
vuex-electron-store
Persist and rehydrate the Vuex state in your Electron app
Simple data persistence for your Electron app or module - Save and load user preferences, app state, cache, etc
npm install electron-store
Typescript
Module System
Min. Node Version
Node Version
NPM Version
95.9
Supply Chain
99.4
Quality
78.3
Maintenance
100
Vulnerability
99.3
License
JavaScript (76.34%)
TypeScript (23.66%)
Total Downloads
24,264,847
Last Day
8,630
Last Week
163,292
Last Month
682,448
Last Year
7,002,705
4,665 Stars
108 Commits
155 Forks
25 Watching
1 Branches
18 Contributors
Latest Version
10.0.0
Package Id
electron-store@10.0.0
Unpacked Size
19.95 kB
Size
7.15 kB
File Count
5
NPM Version
10.6.0
Node Version
20.12.2
Publised On
14 Jun 2024
Cumulative downloads
Total Downloads
Last day
-14.6%
8,630
Compared to previous day
Last week
-0.1%
163,292
Compared to previous week
Last month
-7.8%
682,448
Compared to previous month
Last year
23.1%
7,002,705
Compared to previous year
Simple data persistence for your Electron app or module - Save and load user settings, app state, cache, etc
Electron doesn't have a built-in way to persist user settings and other data. This module handles that for you, so you can focus on building your app. The data is saved in a JSON file named config.json in app.getPath('userData')
.
You can use this module directly in both the main and renderer process. For use in the renderer process only, you need to call Store.initRenderer()
in the main process, or create a new Store instance (new Store()
) in the main process.
1npm install electron-store
Requires Electron 30 or later.
[!NOTE] This package is native ESM and no longer provides a CommonJS export. If your project uses CommonJS, you will have to convert to ESM. More info about Electron and ESM. Please don't open issues for questions regarding CommonJS and ESM.
1import Store from 'electron-store'; 2 3const store = new Store(); 4 5store.set('unicorn', '🦄'); 6console.log(store.get('unicorn')); 7//=> '🦄' 8 9// Use dot-notation to access nested properties 10store.set('foo.bar', true); 11console.log(store.get('foo')); 12//=> {bar: true} 13 14store.delete('unicorn'); 15console.log(store.get('unicorn')); 16//=> undefined
Changes are written to disk atomically, so if the process crashes during a write, it will not corrupt the existing config.
Returns a new instance.
Type: object
Type: object
Default values for the store items.
Note: The values in defaults
will overwrite the default
key in the schema
option.
type: object
JSON Schema to validate your config data.
Under the hood, the JSON Schema validator ajv is used to validate your config. We use JSON Schema draft-2020-12 and support all validation keywords and formats.
You should define your schema as an object where each key is the name of your data's property and each value is a JSON schema used to validate that property. See more here.
Example:
1import Store from 'electron-store'; 2 3const schema = { 4 foo: { 5 type: 'number', 6 maximum: 100, 7 minimum: 1, 8 default: 50 9 }, 10 bar: { 11 type: 'string', 12 format: 'url' 13 } 14}; 15 16const store = new Store({schema}); 17 18console.log(store.get('foo')); 19//=> 50 20 21store.set('foo', '1'); 22// [Error: Config schema violation: `foo` should be number]
Note: The default
value will be overwritten by the defaults
option if set.
Type: object
Important: I cannot provide support for this feature. It has some known bugs. I have no plans to work on it, but pull requests are welcome.
You can use migrations to perform operations to the store whenever a version is upgraded.
The migrations
object should consist of a key-value pair of 'version': handler
. The version
can also be a semver range.
Example:
1import Store from 'electron-store'; 2 3const store = new Store({ 4 migrations: { 5 '0.0.1': store => { 6 store.set('debugPhase', true); 7 }, 8 '1.0.0': store => { 9 store.delete('debugPhase'); 10 store.set('phase', '1.0.0'); 11 }, 12 '1.0.2': store => { 13 store.set('phase', '1.0.2'); 14 }, 15 '>=2.0.0': store => { 16 store.set('phase', '>=2.0.0'); 17 } 18 } 19});
Type: Function
Default: undefined
The given callback function will be called before each migration step.
The function receives the store as the first argument and a context object as the second argument with the following properties:
fromVersion
- The version the migration step is being migrated from.toVersion
- The version the migration step is being migrated to.finalVersion
- The final version after all the migrations are applied.versions
- All the versions with a migration step.This can be useful for logging purposes, preparing migration data, etc.
Example:
1import Store from 'electron-store'; 2 3console.log = someLogger.log; 4 5const mainConfig = new Store({ 6 beforeEachMigration: (store, context) => { 7 console.log(`[main-config] migrate from ${context.fromVersion} → ${context.toVersion}`); 8 }, 9 migrations: { 10 '0.4.0': store => { 11 store.set('debugPhase', true); 12 } 13 } 14}); 15 16const secondConfig = new Store({ 17 beforeEachMigration: (store, context) => { 18 console.log(`[second-config] migrate from ${context.fromVersion} → ${context.toVersion}`); 19 }, 20 migrations: { 21 '1.0.1': store => { 22 store.set('debugPhase', true); 23 } 24 } 25});
Type: string
Default: 'config'
Name of the storage file (without extension).
This is useful if you want multiple storage files for your app. Or if you're making a reusable Electron module that persists some data, in which case you should not use the name config
.
Type: string
Default: app.getPath('userData')
Storage file location. Don't specify this unless absolutely necessary! By default, it will pick the optimal location by adhering to system conventions. You are very likely to get this wrong and annoy users.
If a relative path, it's relative to the default cwd. For example, {cwd: 'unicorn'}
would result in a storage file in ~/Library/Application Support/App Name/unicorn
.
Type: string | Buffer | TypedArray | DataView
Default: undefined
Note that this is not intended for security purposes, since the encryption key would be easily found inside a plain-text Node.js app.
Its main use is for obscurity. If a user looks through the config directory and finds the config file, since it's just a JSON file, they may be tempted to modify it. By providing an encryption key, the file will be obfuscated, which should hopefully deter any users from doing so.
When specified, the store will be encrypted using the aes-256-cbc
encryption algorithm.
Type: string
Default: 'json'
Extension of the config file.
You would usually not need this, but could be useful if you want to interact with a file with a custom file extension that can be associated with your app. These might be simple save/export/preference files that are intended to be shareable or saved outside of the app.
Type: boolean
Default: false
The config is cleared if reading the config file causes a SyntaxError
. This is a good behavior for unimportant data, as the config file is not intended to be hand-edited, so it usually means the config is corrupt and there's nothing the user can do about it anyway. However, if you let the user edit the config file directly, mistakes might happen and it could be more useful to throw an error when the config is invalid instead of clearing.
Type: Function
Default: value => JSON.stringify(value, null, '\t')
Function to serialize the config object to a UTF-8 string when writing the config file.
You would usually not need this, but it could be useful if you want to use a format other than JSON.
Type: Function
Default: JSON.parse
Function to deserialize the config object from a UTF-8 string when reading the config file.
You would usually not need this, but it could be useful if you want to use a format other than JSON.
Type: boolean
Default: true
Accessing nested properties by dot notation. For example:
1import Store from 'electron-store'; 2 3const store = new Store(); 4 5store.set({ 6 foo: { 7 bar: { 8 foobar: '🦄' 9 } 10 } 11}); 12 13console.log(store.get('foo.bar.foobar')); 14//=> '🦄'
Alternatively, you can set this option to false
so the whole string would be treated as one key.
1const store = new Store({accessPropertiesByDotNotation: false}); 2 3store.set({ 4 `foo.bar.foobar`: '🦄' 5}); 6 7console.log(store.get('foo.bar.foobar')); 8//=> '🦄'
Type: boolean
Default: false
Watch for any changes in the config file and call the callback for onDidChange
or onDidAnyChange
if set. This is useful if there are multiple processes changing the same config file, for example, if you want changes done in the main process to be reflected in a renderer process.
You can use dot-notation in a key
to access nested properties.
The instance is iterable
so you can use it directly in a for…of
loop.
Set an item.
The value
must be JSON serializable. Trying to set the type undefined
, function
, or symbol
will result in a TypeError.
Set multiple items at once.
Get an item or defaultValue
if the item does not exist.
Reset items to their default values, as defined by the defaults
or schema
option.
Use .clear()
to reset all items.
Check if an item exists.
Delete an item.
Delete all items.
This resets known items to their default values, if defined by the defaults
or schema
option.
callback
: (newValue, oldValue) => {}
Watches the given key
, calling callback
on any changes.
When a key is first set oldValue
will be undefined
, and when a key is deleted newValue
will be undefined
.
Returns a function which you can use to unsubscribe:
1const unsubscribe = store.onDidChange(key, callback); 2 3unsubscribe();
callback
: (newValue, oldValue) => {}
Watches the whole config object, calling callback
on any changes.
oldValue
and newValue
will be the config object before and after the change, respectively. You must compare oldValue
to newValue
to find out what changed.
Returns a function which you can use to unsubscribe:
1const unsubscribe = store.onDidAnyChange(callback); 2 3unsubscribe();
Get the item count.
Get all the data as an object or replace the current data with an object:
1import Store from 'electron-store'; 2 3const store = new Store(); 4 5store.store = { 6 hello: 'world' 7};
Get the path to the storage file.
Open the storage file in the user's editor.
Returns a promise that resolves when the editor has been opened, or rejects if it failed to open.
Initializer to set up the required ipc
communication channels for the module when a Store
instance is not created in the main process and you are creating a Store
instance in the Electron renderer process only.
In the main process:
1import Store from 'electron-store'; 2 3Store.initRenderer();
And in the renderer process:
1import Store from 'electron-store'; 2 3const store = new Store(); 4 5store.set('unicorn', '🦄'); 6console.log(store.get('unicorn')); 7//=> '🦄'
window.localStorage
The serialize
and deserialize
options can be used to customize the format of the config file, as long as the representation is compatible with utf8
encoding.
Example using YAML:
1import Store from 'electron-store';
2import yaml from 'js-yaml';
3
4const store = new Store({
5 fileExtension: 'yaml',
6 serialize: yaml.safeDump,
7 deserialize: yaml.safeLoad
8});
The store is not a singleton, so you will need to either initialize the store in a file that is imported in both the main and renderer process, or you have to pass the values back and forth as messages. Electron provides a handy invoke/handle
API that works well for accessing these values.
1ipcMain.handle('getStoreValue', (event, key) => { 2 return store.get(key); 3});
1const foo = await ipcRenderer.invoke('getStoreValue', 'foo');
This package is not a database. It simply uses a JSON file that is read/written on every change. Prefer using it for smaller amounts of data like user settings, value caching, state, etc.
If you need to store large blobs of data, I recommend saving it to disk and to use this package to store the path to the file instead.
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
Found 4/30 approved changesets -- score normalized to 1
Reason
0 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
security policy file not detected
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-12-16
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More