# deep-id

> Ordered multi-level ID system, inspired by React

Latest version **0.0.0** (published 2016-06-02) · MIT license · 0 weekly downloads

## Install

```sh
npm install deep-id
pnpm add deep-id
yarn add deep-id
bun add deep-id
```

## Health

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

Positive: no vulnerabilities.

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

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.0 |
| Published | 2016-06-02 |
| First published | 2016-06-02 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Kevin Schaul |
| Maintainers | kevin.schaul |

## Links

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

## Recent versions

- 0.0.0 (latest) — 2016-06-02

## README

# DeepID

Ordered multi-level ID system, inspired by React.

Useful for linear stories with optional branches, such as [The Waypoint](https://www.washingtonpost.com/graphics/world/lesbos/).

Here’s a janky diagram of how IDs work and available paths between them:

    0.0
     |
     |
     |
    1.0
     |
     |
     |
    2.0 --- 2.1 --- 2.2
     |     /     __ /
     |   /  __ /
     | /__/
    3.0
     |
     |
     |
    4.0 --- 4.1
     |     /
     |   /
     | /
    5.0

See [test/test.js](test/test.js) for detailed intended behavior.

# Usage

    var deepID = require('deep-id');

    var id = deepID.createId(0, 0);
    deepID.getNextID(1);

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