An open API service indexing awesome lists of open source software.

https://github.com/budarin/local-store

Local storage service
https://github.com/budarin/local-store

Last synced: 16 days ago
JSON representation

Local storage service

Awesome Lists containing this project

README

        

# local-store

Local storage service

## Installation

```bash
yarn add @budarin/local-store
```

## Usage

```ts
import { LocalStore } from '@budarin/local-store';

const store = new LocalStore(); //LocalStore(console)

store.setItem('key', 'value');
store.getItem('key');
store.removeItem('key');
store.clear();
```

## License

MIT