electron-settings
A simple persistent user settings framework for Electron.
Originally adapted from Atom's own configuration manager and the settings manager of choice for Electron's own demo app, electron-settings allows you to persist user settings and other data simply and easily.
Also, you can subscribe to properties and get notified when their values change. So that's pretty nifty.
Install
$ npm install --save electron-settings
Demo
const settings = require('electron-settings');
settings.set('name', {
first: 'Cosmo',
last: 'Kramer'
});
settings.get('name.first');
settings.has('name.middle');
Resources
Having trouble? Get help on Gitter.