# 01-reconciler

> Reconsiler is basic attemp to replicate react at the very basic level, It deepens the understanding of how DOM manipulation uner the hood works and how react manages to update the states

Latest version **1.0.0** (published 2023-08-15) · ISC license · 0 weekly downloads

## Install

```sh
npm install 01-reconciler
pnpm add 01-reconciler
yarn add 01-reconciler
bun add 01-reconciler
```

## 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.0 |
| Published | 2023-08-15 |
| First published | 2023-08-15 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Unpacked size | 8.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | celestial-cribe |

## Links

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

## Recent versions

- 1.0.0 (latest) — 2023-08-15

## README

# _Reconsiler_

Reconsiler is basic attemp to replicate react at the very basic level, It deepens the understanding of how DOM manipulation uner the hood works and how react manages to update the states



```sh
/**
 * -----------------------------------------------------
 * Below code shows the usage of class and its functions
 * below is the sampl case where state got updated after 3 sec
 */

let reconsile = new MakeState(state)

reconsile.init(howUserwantToAppendMyStateToHtml)

setTimeout(()=>{
    reconsile.updateState(updatedState)
}, 3000)
```

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