@7inch/storage 中文文档教程

发布于 3年前 浏览 24 项目主页 更新于 3年前

@7inch/storage

npm

English | 中文

Introduction

A basic library wrapper with localStorage and sessionStorage, base on Typescript and rollup.

Install

npm i @7inch/storage

Usage

Take localStorage for example(same as sessionStorage):

import { localStore, sessionStore } from "@7inch/storage";

// set a data item
localStore.set("foo", 10);
// get a data item
localStore.get("foo");
// remove a data item
localStore.remove("foo");
// check a data item if exists
localStore.has("foo");
// clear all items
localStore.clear();

License

Made with ❤️ Published under MIT License.

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文