All Projects β†’ robinvdvleuten β†’ Vuex Persistedstate

robinvdvleuten / Vuex Persistedstate

Licence: mit
πŸ’Ύ Persist and rehydrate your Vuex state between page reloads.

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Vuex Persistedstate

Vuex Localstorage
Persist Vuex state with expires by localStorage or some else storage.
Stars: ✭ 129 (-97.68%)
Mutual labels:  storage, vuex, localstorage
Slimefun4
Slimefun 4 - A unique Spigot/Paper plugin that looks and feels like a modpack. We've been giving you backpacks, jetpacks, reactors and much more since 2013.
Stars: ✭ 369 (-93.36%)
Mutual labels:  hacktoberfest, plugin
Vuex Rest Api
A utility to simplify the use of REST APIs with Vuex
Stars: ✭ 365 (-93.44%)
Mutual labels:  hacktoberfest, vuex
Cortx
CORTX Community Object Storage is 100% open source object storage uniquely optimized for mass capacity storage devices.
Stars: ✭ 426 (-92.34%)
Mutual labels:  hacktoberfest, storage
Immortaldb
πŸ”© A relentless key-value store for the browser.
Stars: ✭ 2,962 (-46.74%)
Mutual labels:  storage, localstorage
Angular Locker
πŸ—„οΈ A simple & configurable abstraction for local/session storage in angular js projects
Stars: ✭ 318 (-94.28%)
Mutual labels:  storage, localstorage
Localforage
πŸ’Ύ Offline storage, improved. Wraps IndexedDB, WebSQL, or localStorage using a simple but powerful API.
Stars: ✭ 19,840 (+256.77%)
Mutual labels:  storage, localstorage
nativestor
NativeStor provide kubernetes local storage which is light weight and high performance
Stars: ✭ 20 (-99.64%)
Mutual labels:  storage, localstorage
Csi Digitalocean
A Container Storage Interface (CSI) Driver for DigitalOcean Block Storage
Stars: ✭ 452 (-91.87%)
Mutual labels:  hacktoberfest, storage
Viaversion
Allows the connection of newer clients to older server versions for Minecraft servers.
Stars: ✭ 463 (-91.67%)
Mutual labels:  hacktoberfest, plugin
Vue Ls
πŸ’₯ Vue plugin for work with local storage, session storage and memory storage from Vue context
Stars: ✭ 468 (-91.58%)
Mutual labels:  storage, localstorage
Awesome Go Storage
A curated list of awesome Go storage projects and libraries
Stars: ✭ 3,224 (-42.02%)
Mutual labels:  hacktoberfest, storage
Protein
πŸ’Š Protein is an IntelliJ Plugin to generate Kotlin code for Retrofit 2 and RxJava 2 based on a Swagger definition
Stars: ✭ 273 (-95.09%)
Mutual labels:  hacktoberfest, plugin
Highlightjs Line Numbers.js
Line numbering plugin for Highlight.js
Stars: ✭ 323 (-94.19%)
Mutual labels:  hacktoberfest, plugin
Motrix Webextension
A chrome extension for the Motrix Download Manager
Stars: ✭ 253 (-95.45%)
Mutual labels:  hacktoberfest, plugin
Vue Acl
Access Control List plugin for VueJS 2.0
Stars: ✭ 376 (-93.24%)
Mutual labels:  plugin, vuex
Secure Ls
πŸ”’ Secure localStorage data with high level of encryption and data compression
Stars: ✭ 486 (-91.26%)
Mutual labels:  hacktoberfest, localstorage
vue-web-storage
Vue.js plugin for local storage and session storage (1.8 kb min+gz) πŸ’Ύ
Stars: ✭ 85 (-98.47%)
Mutual labels:  storage, localstorage
ddrive
A lightweight cloud storage system using discord as storage device written in nodejs
Stars: ✭ 25 (-99.55%)
Mutual labels:  storage, localstorage
Localstorage
A library to provide access to local storage in Blazor applications
Stars: ✭ 425 (-92.36%)
Mutual labels:  hacktoberfest, localstorage

vuex-persistedstate

Persist and rehydrate your Vuex state between page reloads.


Build Status NPM version NPM downloads Prettier MIT license

PRs Welcome Code Of Conduct

Sponsored by The Webstronauts

Install

npm install --save vuex-persistedstate

The UMD build is also available on unpkg:

<script src="https://unpkg.com/vuex-persistedstate/dist/vuex-persistedstate.umd.js"></script>

You can find the library on window.createPersistedState.

Usage

import { createStore } from "vuex";
import createPersistedState from "vuex-persistedstate";

const store = createStore({
  // ...
  plugins: [createPersistedState()],
});

For usage with for Vuex 3 and Vue 2, please see 3.x.x branch.

Examples

Check out a basic example on CodeSandbox.

Edit vuex-persistedstate

Or configured to use with js-cookie.

Edit vuex-persistedstate with js-cookie

Or configured to use with secure-ls

Edit vuex-persistedstate with secure-ls (encrypted data)

Example with Vuex modules

New plugin instances can be created in separate files, but must be imported and added to plugins object in the main Vuex file.

/* module.js */
export const dataStore = {
  state: {
    data: []
  }
}

/* store.js */
import { dataStore } from './module'

const dataState = createPersistedState({
  paths: ['data']
})

export new Vuex.Store({
  modules: {
    dataStore
  },
  plugins: [dataState]
})

Example with Nuxt.js

It is possible to use vuex-persistedstate with Nuxt.js. It must be included as a NuxtJS plugin:

With local storage (client-side only)

// nuxt.config.js

...
/*
 * Naming your plugin 'xxx.client.js' will make it execute only on the client-side.
 * https://nuxtjs.org/guide/plugins/#name-conventional-plugin
 */
plugins: [{ src: '~/plugins/persistedState.client.js' }]
...
// ~/plugins/persistedState.client.js

import createPersistedState from 'vuex-persistedstate'

export default ({store}) => {
  createPersistedState({
    key: 'yourkey',
    paths: [...]
    ...
  })(store)
}

Using cookies (universal client + server-side)

Add cookie and js-cookie:

npm install --save cookie js-cookie or yarn add cookie js-cookie

// nuxt.config.js
...
plugins: [{ src: '~/plugins/persistedState.js'}]
...
// ~/plugins/persistedState.js

import createPersistedState from 'vuex-persistedstate';
import * as Cookies from 'js-cookie';
import cookie from 'cookie';

export default ({ store, req }) => {
    createPersistedState({
        paths: [...],
        storage: {
            getItem: (key) => {
                // See https://nuxtjs.org/guide/plugins/#using-process-flags
                if (process.server) {
                    const parsedCookies = cookie.parse(req.headers.cookie);
                    return parsedCookies[key];
                } else {
                    return Cookies.get(key);
                }
            },
            // Please see https://github.com/js-cookie/js-cookie#json, on how to handle JSON.
            setItem: (key, value) =>
                Cookies.set(key, value, { expires: 365, secure: false }),
            removeItem: key => Cookies.remove(key)
        }
    })(store);
};

API

createPersistedState([options])

Creates a new instance of the plugin with the given options. The following options can be provided to configure the plugin for your specific needs:

  • key <String>: The key to store the persisted state under. Defaults to vuex.

  • paths <Array>: An array of any paths to partially persist the state. If no paths are given, the complete state is persisted. If an empty array is given, no state is persisted. Paths must be specified using dot notation. If using modules, include the module name. eg: "auth.user" Defaults to undefined.

  • reducer <Function>: A function that will be called to reduce the state to persist based on the given paths. Defaults to include the values.

  • subscriber <Function>: A function called to setup mutation subscription. Defaults to store => handler => store.subscribe(handler).

  • storage <Object>: Instead of (or in combination with) getState and setState. Defaults to localStorage.

  • getState <Function>: A function that will be called to rehydrate a previously persisted state. Defaults to using storage.

  • setState <Function>: A function that will be called to persist the given state. Defaults to using storage.

  • filter <Function>: A function that will be called to filter any mutations which will trigger setState on storage eventually. Defaults to () => true.

  • overwrite <Boolean>: When rehydrating, whether to overwrite the existing state with the output from getState directly, instead of merging the two objects with deepmerge. Defaults to false.

  • arrayMerger <Function>: A function for merging arrays when rehydrating state. Defaults to function (store, saved) { return saved } (saved state replaces supplied state).

  • rehydrated <Function>: A function that will be called when the rehydration is finished. Useful when you are using Nuxt.js, which the rehydration of the persisted state happens asynchronously. Defaults to store => {}

  • fetchBeforeUse <Boolean>: A boolean indicating if the state should be fetched from storage before the plugin is used. Defaults to false.

  • assertStorage <Function>: An overridable function to ensure storage is available, fired on plugins's initialization. Default one is performing a Write-Delete operation on the given Storage instance. Note, default behaviour could throw an error (like DOMException: QuotaExceededError).

Customize Storage

If it's not ideal to have the state of the Vuex store inside localstorage. One can easily implement the functionality to use cookies for that (or any other you can think of);

Edit vuex-persistedstate with js-cookie

import { Store } from "vuex";
import createPersistedState from "vuex-persistedstate";
import * as Cookies from "js-cookie";

const store = new Store({
  // ...
  plugins: [
    createPersistedState({
      storage: {
        getItem: (key) => Cookies.get(key),
        // Please see https://github.com/js-cookie/js-cookie#json, on how to handle JSON.
        setItem: (key, value) =>
          Cookies.set(key, value, { expires: 3, secure: true }),
        removeItem: (key) => Cookies.remove(key),
      },
    }),
  ],
});

In fact, any object following the Storage protocol (getItem, setItem, removeItem, etc) could be passed:

createPersistedState({ storage: window.sessionStorage });

This is especially useful when you are using this plugin in combination with server-side rendering, where one could pass an instance of dom-storage.

πŸ”Obfuscate Local Storage

If you need to use Local Storage (or you want to) but want to prevent attackers from easily inspecting the stored data, you can obfuscate it.

Important ⚠️ Obfuscating the Vuex store means to prevent attackers from easily gaining access to the data. This is not a secure way of storing sensitive data (like passwords, personal information, etc.), and always needs to be used in conjunction with some other authentication method of keeping the data (such as Firebase or your own server).

Edit vuex-persistedstate with secure-ls (obfuscated data)

import { Store } from "vuex";
import createPersistedState from "vuex-persistedstate";
import SecureLS from "secure-ls";
var ls = new SecureLS({ isCompression: false });

// https://github.com/softvar/secure-ls

const store = new Store({
  // ...
  plugins: [
    createPersistedState({
      storage: {
        getItem: (key) => ls.get(key),
        setItem: (key, value) => ls.set(key, value),
        removeItem: (key) => ls.remove(key),
      },
    }),
  ],
});

⚠️ LocalForage ⚠️

As it maybe seems at first sight, it's not possible to pass a LocalForage instance as storage property. This is due the fact that all getters and setters must be synchronous and LocalForage's methods are asynchronous.

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributors ✨

Thanks goes to these wonderful people (emoji key):


Robin van der Vleuten

πŸ’» πŸ“– πŸš‡ ⚠️

Sebastian

πŸ’» πŸ“–

Boris Graeff

πŸ’»

CΓ­cero Pablo

πŸ“–

Gurpreet Atwal

⚠️

Jakub Koralewski

πŸ’»

Jankees van Woezik

πŸ“–

Jofferson Ramirez Tiquez

πŸ“–

Jordan Deprez

πŸ“–

Juan Villegas

πŸ“–

JΓΌrg Rast

πŸ’»

Kartashov Alexey

πŸ’»

Leonard Pauli

πŸ’» πŸ“–

Nelson Liu

πŸ’» πŸ“– ⚠️

Nico

πŸ’» ⚠️

Quentin Dreyer

πŸ’»

Raphael Saunier

πŸ’»

Rodney Rehm

πŸ’» ⚠️

Ryan Wang

πŸ’» πŸ“– ⚠️

SΓ©bastien Chopin

πŸ“–

jeffjing

πŸ’»

macarthuror

πŸ“–

Paul Melero

πŸ“– πŸ’» ⚠️

Guillaume da Silva

πŸ’»

Jonathan Santerre

πŸ’»

FΓ‘bio Santos

πŸ“–

robertgr991

πŸ’»

JurijsKolesnikovs

πŸ“–

David Bond

πŸ“–

Freek van Rijt

πŸ“–

Ilyes Hermellin

πŸ’»

Peter Siska

πŸ“–

Dmitry Filippov

πŸ“–

Thomas Meitz

πŸ“– ⚠️

Neeron Bhatta

πŸ“–

joaoaraujo-hotmart

πŸ’»

This project follows the all-contributors specification. Contributions of any kind welcome!

License

The MIT License (MIT). Please see License File for more information.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].