Store and manipulate your profile for your Electron app.
- Profile migration/update
- Sync profile changes in runtime for all renderer processes.
npm install --save electron-profile
npm start examples/${name}
const profile = require('electron-profile');
let settings = profile.load('profile://local/settings.json');
settings.set('user.name', 'Johnny Wu');
console.log(settings.get('user.name')); // Johnny Wu
settings.save();
MIT © 2017 Johnny Wu