Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maple3142/vuejs-storage
Vue and Vuex plugin to persistence data with localStorage/sessionStorage
https://github.com/maple3142/vuejs-storage
localstorage persistence plugin sessionstorage storage vue vue-plugin vuejs-storage vuex
Last synced: 6 days ago
JSON representation
Vue and Vuex plugin to persistence data with localStorage/sessionStorage
- Host: GitHub
- URL: https://github.com/maple3142/vuejs-storage
- Owner: maple3142
- License: mit
- Created: 2017-09-15T12:47:26.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2022-06-17T12:38:13.000Z (over 2 years ago)
- Last Synced: 2024-04-28T08:51:25.569Z (7 months ago)
- Topics: localstorage, persistence, plugin, sessionstorage, storage, vue, vue-plugin, vuejs-storage, vuex
- Language: TypeScript
- Homepage:
- Size: 2.17 MB
- Stars: 122
- Watchers: 5
- Forks: 16
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vuejs-storage
> Vue.js and Vuex plugin to persistence data with localStorage/sessionStorage
[![npm](https://img.shields.io/npm/v/vuejs-storage.svg?style=flat-square)](https://www.npmjs.com/package/vuejs-storage)
[![npm](https://img.shields.io/npm/dm/vuejs-storage?style=flat-square)](https://www.npmjs.com/package/vuejs-storage)
[![GitHub Workflow Status](https://img.shields.io/github/workflow/status/maple3142/vuejs-storage/Node.js%20CI?style=flat-square)](https://github.com/maple3142/vuejs-storage/actions?query=workflow%3A%22Node.js+CI%22)
[![codecov](https://img.shields.io/codecov/c/github/maple3142/vuejs-storage.svg?style=flat-square)](https://codecov.io/gh/maple3142/vuejs-storage)## Purpose
This plugin provide a simple binding with `localStorage` and `sessionStorage` (or something similar) to **Vue** and **Vuex**.
It has **[no dependencies](https://www.npmjs.com/package/vuejs-storage?activeTab=dependencies)**, so it is really small.
* `.js` size: 5.75KB (1.7KB gzipped)
* `.min.js` size: 2.21KB (1.1KB gzipped)## Usage
```js
//in webpack environment:
import vuejsStorage from 'vuejs-storage'
//in browser script tag:
const vuejsStorage = window.vuejsStorageVue.use(vuejsStorage)
//vue example
new Vue({
//...
data: {
count: 0,
text: ''
},
storage: {
keys: ['count'],
//keep data.count in localStorage
namespace: 'my-namespace'
}
})//vuex example
const store = new Vuex.Store({
//state...
state: {
count: 0
},
mutations: {
increment(state) {
state.count++
}
},
plugins: [
vuejsStorage({
keys: ['count'],
//keep state.count in localStorage
namespace: 'my-namespace',
driver: vuejsStorage.drivers.sessionStorage
//if you want to use sessionStorage instead of localStorage
})
]
})
```## Nested key
```javascript
data: {
a: {
b: 1,
c: 2
}
},
storage: {
namespace: 'test',
keys: ['a.b']
//only keep a.b in localStorage
}
```## Vuex modules
```javascript
state: {
a: 1
},
modules: {
moduleA: {
state: {
a: 2
}
}
},
plugins: [
vuejsStorage({
namespace: 'test',
keys: ['moduleA','a']
// keep both root's state.a & moduleA's state
})
]
```## Multiple storage
```javascript
data: {
a: 1,
b: 2
},
storage: [
{
namespace: 'test',
keys: ['a']
},
{
namespace: 'test',
keys: ['b'],
driver: vuejsStorage.drivers.sessionStorage
}
]
```## API
### `vuejsStorage`
**Vue** plugin
```javascript
Vue.use(vuejsStorage)
```### `vuejsStorage(option)`
Create a **Vuex** plugin
```javascript
const vuexplugin = vuejsStorage(/* option object*/)
```### `option`
Option object, can be used when create **Vuex** plugin or in **Vue** option `storage` field
```javascript
{
keys: [], //array of string
/*
this option is different when use in vue and vuex
when used in Vue constructor option, keys means which data should be keep in localStorage
when used in Vuex plugin, keys mean which state should be keep in localStorage
*/
driver: vuejsStorage.drivers.sessionStorage, //any object has 'set','get','has' api, default: vuejsStorage.drivers.localStorage
namespace: 'ns', //a string, REQUIRED
merge: _assign //a function to merge object like Object.assign, default: internal implementation(src/assign.ts)
}
```## Examples
* [Counter](https://rawgit.com/maple3142/vuejs-storage/master/example.html)
* [maple3142/TodoList](https://github.com/maple3142/TodoList)