0.0.2 • Published 6 years ago

electron-store-webpack-wrapper v0.0.2

Weekly downloads
52
License
MIT
Repository
github
Last release
6 years ago

electron-store-webpack-wrapper

npm version npm downloads Build Status

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-wrapper

Usage

import createElectronStore from "electron-store-webpack-wrapper";

const electronStore = createElectronStore({
  // your electron-store options here
})

const value = electronStore.get('key')