psperber / electron-store-webpack-wrapper

Super simple wrapper around electron-store to use it with webpack

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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')

About

Super simple wrapper around electron-store to use it with webpack


Languages

Language:JavaScript 100.0%