# @kanety/js-store

> A simple web storage wrapper saving json data

Latest version **0.1.2** (published 2019-06-22) · MIT license · 0 weekly downloads

## Install

```sh
npm install @kanety/js-store
pnpm add @kanety/js-store
yarn add @kanety/js-store
bun add @kanety/js-store
```

## Health

**Score 20/100 (F)** — status: abandoned.

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.2 |
| Published | 2019-06-22 |
| First published | 2019-06-16 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 10.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Yoshikazu Kaneta |
| Maintainers | kanety |
| Keywords | jquery, jquery-plugin, storage |

## Links

- npm: https://www.npmjs.com/package/@kanety/js-store
- Repository: https://github.com/kanety/js-store
- Homepage: https://github.com/kanety/js-store#readme
- Issues: https://github.com/kanety/js-store/issues
- npm.io page: https://npm.io/package/@kanety/js-store

## Alternatives

- [gamedig](https://npm.io/package/gamedig.md) — 29.3K weekly downloads
- [join-monster](https://npm.io/package/join-monster.md) — 12.8K weekly downloads
- [masked](https://npm.io/package/masked.md) — 5.5K weekly downloads
- [@comunica/actor-query-process-explain-logical](https://npm.io/package/@comunica/actor-query-process-explain-logical.md) — 4.7K weekly downloads
- [@veracity/vui](https://npm.io/package/@veracity/vui.md) — 4.6K weekly downloads

## Recent versions

- 0.1.2 (latest) — 2019-06-22
- 0.1.1 — 2019-06-16
- 0.1.0 — 2019-06-16

## README

# js-store

A simple web storage wrapper saving json data.

## Installation

Install from npm:

    $ npm install @kanety/js-store --save

## Usage

```javascript
import JsStore from '@kanety/js-store'

let store = new JsStore({
  type: 'session',  // or 'local'
  key: 'YOUR_STORAGE_KEY'
});

// set
store.set({ key: 'value' });

// get
let data = store.get();

// remove
store.remove();
```

## License

The library is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).

---
_Source: https://npm.io/package/@kanety/js-store · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
