Skip to content

electron-utils/electron-profile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

electron-profile

Linux Build Status Windows Build status Dependency Status devDependency Status

Store and manipulate your profile for your Electron app.

Why?

  • Profile migration/update
  • Sync profile changes in runtime for all renderer processes.

Install

npm install --save electron-profile

Run Examples:

npm start examples/${name}

Usage

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();

API Reference

License

MIT © 2017 Johnny Wu

About

Store and manipulate your profile for your Electron app.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published