https://github.com/ilukemagic/web-storage-utils
make easily use localStorage and sessionStorage
https://github.com/ilukemagic/web-storage-utils
Last synced: 11 months ago
JSON representation
make easily use localStorage and sessionStorage
- Host: GitHub
- URL: https://github.com/ilukemagic/web-storage-utils
- Owner: ilukemagic
- Created: 2022-09-20T11:22:46.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-20T11:29:33.000Z (over 3 years ago)
- Last Synced: 2025-03-13T03:30:30.992Z (12 months ago)
- Language: JavaScript
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# web-storage-utils
make easily use localStorage and sessionStorage
## Install
```shell
npm i @vikoala/web-storage-utils
```
## Usage
```js
import { local } '@vikoala/web-storage-utils'
// set
local.id = 1
// get
local.id
// delete
delete local.id
// clear
local._clear()
```