Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 1.05 KB

README.md

File metadata and controls

25 lines (17 loc) · 1.05 KB

Mimic 🔮

Mimic is an under-work React framework which has capabilities to write JSX without using React's render or createComponent


Play with it here on Code Sand Box

The component is created and rendered using Mimic.createElement and Mimic.render,

So it does not rely on React for creating and adding elements to DOM, but takes help of JSX ecosystem that react provides. Mimic uses Fibre tree to create child and siblings of the element.

It works on concurrent mode which helps in rendering our tree without blocking the main thread, and resumes just after the main thread is idle to compute.

Functionalities added till now ✔️:

  • Mimic.createElement
  • Mimic.render

Working on 👨‍💻:

  • Reconciliation

Up Plans 📝:

  • Hooks

Architecture

image