electron-store-webpack-wrapper
v0.0.2
Published
Super simple wrapper around electron-store to use it with webpack
Readme
electron-store-webpack-wrapper
While implementing redux-persist-electron-storage I found out, that it is possible to use electron-store with webpack by bundling it in a module. So I decided to create this super simple module to prevent the following error:
Uncaught Error: Cannot find module "."Installation
yarn add electron-store-webpack-wrapperUsage
import createElectronStore from "electron-store-webpack-wrapper";
const electronStore = createElectronStore({
// your electron-store options here
})
const value = electronStore.get('key')