npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

next-vue-storage-watcher

v0.0.8

Published

localStorage and sessionStorage management tool for vue 3

Downloads

26

Readme

License: MIT Known Vulnerabilities npm type definitions npm

Next-vue-storage-watcher

Vue 3 version (vue 2 pls refer to here)

the real reactive watcher for localStorge. I search a few days for a lib to watch the ls, but failed.

you can use this tiny storage wrapper which works well with Vue 3.

  • reactive
  • type supported
  • small size

Install

npm install next-vue-storage-watcher --save

Sample Code

import { createApp } from 'vue'
import { createWatcher }from 'next-vue-storage-watcher';

export const lsWatcher = createWatcher({
    prefix:"test_ls_"
})

export const ssWatcher =createWatcher({
    prefix:"test_ss_",
    storage:"session"
})

createApp(App)
    .use(lsWatcher)
    .use(ssWatcher)
    .mount('#app')

storage type

  • localStorage
  • sessionStorage

Options

  • prefix => default is _Storage_Watcher_
  • storage => default is local which means window.localStorage will be used as Storage Object. Another alternative is session

Methods

Usage in setup

import { useLSWatcher } from "next-vue-storage-watcher";
import { useSSWatcher } from "next-vue-storage-watcher";

const ls = useLSWatcher()
const ss = useSSWatcher()

Usage outside setup

  • main.ts
export const lsWatcher = createWatcher({
    prefix:"test_ls_"
})
  • user.ts
import { lsWatcher as ls } from "../main";

const msg = ls.getItem("msg");

I will list basic api just with ls.

setItem

ls.setItem("token","jwt")

the value will be saved in storage with the prefix + key

you also can give the key an expire duration with the unit of (ms)

ls.setItem("token","jwt",3000)

the key will be expried in 3s, you will get null after that.

info

info will return {value:"xx",expire:1638634163710}

the value of expire is the timestamp when the key will be expired, it is calculated internally.

the value prop is reactive, expire is **NOT** reactive, just the snapshot of that second

expire will be null if one of the following scenarios happen:

  • the key is non-exist
  • the key is already expired
  • the key has no expire time
ls.info('token');

getItem

ls.getItem('token', 'default');

get the value with a default return value if it's not existed

the returned value is Ref, you just use it as other Ref values in Vue 3. Automaticly unwrap in template, xx.value used in script

removeItem

ls.removeItem('token');

remove will delete the key in storage and emit with null value

clear

ls.clear();

delete all the keys with your prefix. and all the value will be null

FAQ

  • pls **NOT** to set value as following, the correct way is to use setItem
const ls = useLSWatcher()

let msg = ls.getItem("msg")
// wrong usage
msg.value = "new msg" // !!!you will receive a warning

Contributors

Thanks goes to these wonderful people (emoji key):

| Vincent Guo💻 📖 🐛 | | :---: |

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