1.0.1 • Published 7 years ago

@itsprakash87/rereact v1.0.1

Weekly downloads
-
License
ISC
Repository
github
Last release
7 years ago

Rereact

A reimplementation of reactjs library. It is made for learning purpose.

It uses diff algorithm (just like react) to update only those dom nodes which needs to be updated.

Calculator is an example application which is made using this rereact library.

Supported reactjs features

  • React lifecycle methods
  • React Reconciliation
  • Refs
  • Keys
  • Api: (findDomNode, cloneElement, createElement)

How to use

  • Install this library using npm:
$ npm install @itsprakash87/rereact
  • Tell the jsx parser to use this library's createElement method to parse the jsx at the top of the file and then import the methods
/** @jsx createElement */

import { Component, createElement, render } from '@itsprakash87/rereact';

class App extends Component {
    ...
}

Example