@electrovir/local-storage-client 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  An interface for storing values into the LocalStorage API with type safety. Note that only JSON compatible data can be stored.
4
4
 
5
- Note that some browsers aggressively clear LocalStorage so this should only be used for ephemeral data storage.
5
+ Note that some browsers aggressively clear LocalStorage so this should only be used for ephemeral data storage. If you need more permanent storage, use [local-db-client](https://www.npmjs.com/package/local-db-client) instead.
6
6
 
7
- Reference docs: http://electrovir.github.io/local-storage-client
7
+ Reference docs: https://electrovir.github.io/local-storage-client
8
8
 
9
9
  ## Instal
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@electrovir/local-storage-client",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "An interface for storing JSON values into the LocalStorage API with type safety.",
5
5
  "keywords": [
6
6
  "localstorage",