# harexs-store

> Easily load and persist config

Latest version **1.0.0** (published 2023-07-05) · ISC license · 0 weekly downloads

## Install

```sh
npm install harexs-store
pnpm add harexs-store
yarn add harexs-store
bun add harexs-store
```

## Health

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

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2023-07-05 |
| First published | 2023-07-05 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 9.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Harexs |
| Maintainers | gu1st |

## Links

- npm: https://www.npmjs.com/package/harexs-store
- npm.io page: https://npm.io/package/harexs-store

## Recent versions

- 1.0.0 (latest) — 2023-07-05

## README

### harexs-store

> Easily load and persist config(study for configstore)

### Usage

```javascript
import harexsStore from "harexs-store";

const harexsStore = store("harexs");

harexsStore.set("js.ts.go", [1, 2, 3]);

console.log(harexsStore.get("js.ts.go")); //=>[1, 2, 3]

console.log(harexsStore.has("js.ts")); //=> true

harexsStore.remove("js.ts.go");

console.log(harexsStore.get("js.ts.go")); //=>undefined

harexsStore.clear();

console.log(harexsStore.get("js")); //=>undefined

harexsStore.set("js.ts", [1, 2, 3]);

console.log(harexsStore.get("js.ts")); //=>[1, 2, 3]
```

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