# EverCookie

> Versatile storage.

Latest version **1.0.26** (published 2018-06-19) · MIT license · 0 weekly downloads

## Install

```sh
npm install EverCookie
pnpm add EverCookie
yarn add EverCookie
bun add EverCookie
```

Provides the command `EverCookie`.

## Health

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

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads; large bundle.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.26 |
| Published | 2018-06-19 |
| First published | 2016-10-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 52.5 MB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 9 |
| Author | Sergey Yastrebov |
| Maintainers | crazysquirrel |
| Keywords | TypeScript, Storage, EverCookie |

## Links

- npm: https://www.npmjs.com/package/EverCookie
- Repository: https://github.com/CrazySquirrel/EverCookie
- Issues: https://github.com/CrazySquirrel/EverCookie/issues
- npm.io page: https://npm.io/package/EverCookie

## Dependencies (1)

- [AnimationFrame](https://npm.io/package/AnimationFrame.md) ^1.x.x

## Alternatives

- [@openai/codex-sdk](https://npm.io/package/@openai/codex-sdk.md) — 731.4K weekly downloads
- [babel-plugin-transform-react-jsx](https://npm.io/package/babel-plugin-transform-react-jsx.md) — 565.0K weekly downloads
- [babel-helper-remove-or-void](https://npm.io/package/babel-helper-remove-or-void.md) — 508.5K weekly downloads
- [@pnpm/store-controller-types](https://npm.io/package/@pnpm/store-controller-types.md) — 186.9K weekly downloads
- [react-native-signature-canvas](https://npm.io/package/react-native-signature-canvas.md) — 155.6K weekly downloads

## Recent versions

- 1.0.26 (latest) — 2018-06-19
- 1.0.25 — 2018-06-19
- 1.0.24 — 2018-03-21
- 1.0.22 — 2018-03-16
- 1.0.21 — 2017-10-26
- 1.0.20 — 2017-05-10
- 1.0.19 — 2017-05-02
- 1.0.18 — 2017-05-02
- 1.0.17 — 2017-04-26
- 1.0.16 — 2017-04-25
- 1.0.15 — 2017-03-15
- 1.0.14 — 2017-02-17
- 1.0.13 — 2016-12-06
- 1.0.12 — 2016-12-05
- 1.0.11 — 2016-11-14
- … 10 more at https://npm.io/package/EverCookie/versions

## README

# EverCookie

[![npm version](https://badge.fury.io/js/EverCookie.svg)](https://github.com/CrazySquirrel/EverCookie)
[![Code Climate](https://codeclimate.com/github/CrazySquirrel/EverCookie/badges/gpa.svg)](https://codeclimate.com/github/CrazySquirrel/EverCookie)
[![Test Coverage](https://codeclimate.com/github/CrazySquirrel/EverCookie/badges/coverage.svg)](https://codeclimate.com/github/CrazySquirrel/EverCookie/coverage)
[![Issue Count](https://codeclimate.com/github/CrazySquirrel/EverCookie/badges/issue_count.svg)](https://codeclimate.com/github/CrazySquirrel/EverCookie)
[![Donate](https://img.shields.io/badge/donate-%E2%99%A5-red.svg)](http://crazysquirrel.ru/support/)

Versatile storage.

## Build

The repository contains pre-compiled files, but if you want to add your
files and compile, then run the following commands in the repository folder.

* npm install
* npm run production

or

* npm run development

The build required NodeJs version 6 or higher.

## Usage

```TypeScript
import EverCookie from "EverCookie.ts";

let LocalEverCookie = new EverCookie(uid);

LocalEverCookie.setItem(checkSupport, key, value);
LocalEverCookie.getItem(checkSupport, key);
LocalEverCookie.removeItem(checkSupport, key);
LocalEverCookie.getKeys(checkSupport);
LocalEverCookie.clear(checkSupport);
LocalEverCookie.destroy();
LocalEverCookie.stop();
LocalEverCookie.start();
```

or

```JavaScript
let EverCookie = required("EverCookie.js");

let LocalEverCookie = new EverCookie(uid);

LocalEverCookie.setItem(checkSupport, key, value);
LocalEverCookie.getItem(checkSupport, key);
LocalEverCookie.removeItem(checkSupport, key);
LocalEverCookie.getKeys(checkSupport);
LocalEverCookie.clear(checkSupport);
LocalEverCookie.destroy();
LocalEverCookie.stop();
LocalEverCookie.start();
```

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