drpx-storage

Simple Angular tool to eventually broadcast message when a component is updated

Usage no npm install needed!

<script type="module">
  import drpxStorage from 'https://cdn.skypack.dev/drpx-storage';
</script>

README

drpx-storage

A minimal wrapper for mozilla localforage.

Why? Because it can store data in indexeddb, websql or localstore.

Install

With bower:

$ bower install --save drpx-storage

add to your module the dependence:

    angular.module('yourModule', ['drpxStorage']);

include the javascript library in your application:

<script src="bower_components/localforage/dist/localforage.nopromises.js"></script>
<script src="bower_components/drpx-storage/drpx-storage.js"></script>

With browserify:

$ npm install --save drpx-storage

and require it in your module:

    angular.module('yourModule', [require('drpx-storage')]);