# immutableth

> Immutable storage for your data

Latest version **1.0.2** (published 2021-01-29) · MIT license · 0 weekly downloads

## Install

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

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.2 |
| Published | 2021-01-29 |
| First published | 2018-11-27 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Aleksey Bykhun @caffeinum |
| Maintainers | caffeinum |
| Keywords | immutable storage |

## Links

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

## Dependencies (1)

- [web3](https://npm.io/package/web3.md) ^1.3.3

## Alternatives

- [localforage](https://npm.io/package/localforage.md) — 6.2M weekly downloads
- [localforage-observable](https://npm.io/package/localforage-observable.md) — 30.8K weekly downloads
- [@y/y](https://npm.io/package/@y/y.md) — 30.1K weekly downloads
- [@metaobjectsdev/render](https://npm.io/package/@metaobjectsdev/render.md) — 3.5K weekly downloads
- [@ledgerhq/coin-algorand](https://npm.io/package/@ledgerhq/coin-algorand.md) — 1.1K weekly downloads

## Recent versions

- 1.0.2 (latest) — 2021-01-29
- 1.0.1 — 2018-11-27
- 1.0.0 — 2018-11-27

## README

# ImmutablETH

**This package is built as a joke and is __not__ intended for real-world use! Depend on it for your own risk!**

ImmutablETH stores your data in the ETH rinkeby blockchain.

```javascript
import ImmutablETH from 'ImmutablETH'

const storage = ImmutablETH()

const pony = storage.getItem('myFavoritePony') // Roland
pony.then(console.log)

const order = { item: 'coffee', amount: 1, price: 100, total: 100 }
storage.setItem(`order-${Date.now()}`, order)
  .then(() => console.log('saved!'))
  .catch(() => console.log('error'))
// saved!

```

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