# extreme

> Faster bigdata database.

Latest version **0.0.8** (published 2021-10-26) · ISC license · 0 weekly downloads

> **Deprecated.** This package is deprecated.

## Install

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

## Health

**Score 10/100 (F)** — status: deprecated.

Negative: deprecated.

## Facts

| | |
|---|---|
| Version | 0.0.8 |
| Published | 2021-10-26 |
| First published | 2021-10-26 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 3.4 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | d3tu |
| Maintainers | jpafly |
| Keywords | database, bigdata, faster |

## Links

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

## Dependencies (1)

- [JSONStream](https://npm.io/package/JSONStream.md) ^1.3.5

## Alternatives

- [random-seedable](https://npm.io/package/random-seedable.md) — 27.9K weekly downloads
- [n2words](https://npm.io/package/n2words.md) — 22.2K weekly downloads
- [@stdlib/math-base-special-factorialln](https://npm.io/package/@stdlib/math-base-special-factorialln.md) — 5.7K weekly downloads
- [@stdlib/math-base-special-abs2](https://npm.io/package/@stdlib/math-base-special-abs2.md) — 1.7K weekly downloads
- [commons-math-interpolation](https://npm.io/package/commons-math-interpolation.md) — 1.4K weekly downloads

## Recent versions

- 0.0.8 (latest) — 2021-10-26
- 0.0.7 — 2021-10-26
- 0.0.6 — 2021-10-26
- 0.0.5 — 2021-10-26
- 0.0.4 — 2021-10-26
- 0.0.3 — 2021-10-26
- 0.0.2 — 2021-10-26
- 0.0.1 — 2021-10-26

## README

```javascript
const Database = require("extreme"),
  db = new Database("./data.db");

(async() => {
  await db.put({
    a: "x",
    b: "y",
    c: "z"
  });
  const data = await db.find(o => o.a === "x");
  console.log(data); /*
    { a: "x", b: "y", c: "z" }
  */
  await db.remove(o => o.a === "x");
})();
```

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