# @iden3/bigarray

> Big Array object that allows to handle arrays with a huge number of elements.

Latest version **0.0.2** (published 2020-09-24) · GPL-3.0 license · 0 weekly downloads

## Install

```sh
npm install @iden3/bigarray
pnpm add @iden3/bigarray
yarn add @iden3/bigarray
bun add @iden3/bigarray
```

## Health

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

Positive: esm support; no vulnerabilities.

Warnings: low downloads; no types; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.2 |
| Published | 2020-09-24 |
| First published | 2020-09-23 |
| Weekly downloads | 0 |
| License | GPL-3.0 |
| TypeScript types | none |
| Module format | ESM + CommonJS |
| Dependencies | 0 |
| Unpacked size | 6.3 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Jordi Baylina |
| Maintainers | carlosmata, arnaucube, jbaylina |
| Keywords | bigarray, node, nodejs, memory, array |

## Links

- npm: https://www.npmjs.com/package/@iden3/bigarray
- Repository: https:https://github.com/iden3/bigarray
- npm.io page: https://npm.io/package/@iden3/bigarray

## Alternatives

- [@expo/fingerprint](https://npm.io/package/@expo/fingerprint.md) — 6.2M weekly downloads
- [@azure/monitor-opentelemetry-exporter](https://npm.io/package/@azure/monitor-opentelemetry-exporter.md) — 850.0K weekly downloads
- [@azure/monitor-opentelemetry](https://npm.io/package/@azure/monitor-opentelemetry.md) — 624.0K weekly downloads
- [@posthog/ai](https://npm.io/package/@posthog/ai.md) — 423.3K weekly downloads
- [fakefilter](https://npm.io/package/fakefilter.md) — 63.9K weekly downloads

## Recent versions

- 0.0.2 (latest) — 2020-09-24
- 0.0.1 — 2020-09-23

## README

# bigarray

Array object for nodejs that Support millions of elements

## usage

```
npm install bigarray
```

```
import BigArray from "@iden3/bigarray";

A = new BigArray(1000000);

for (let i=0; i<1000000; i++) {
	A.push({
		num: i;
		square: i*i;
	});
}

console.log(A[3].num * A[700000].square);
```

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