GithubHelp home page GithubHelp logo

caratjs's Introduction

caratjs

A Simple Virtual DOM framework for dummies. Inspired from REACT. Made it, for understanding the internals of REACT and what kind of problems one faces while developing such a framework from scratch.

STEPS

  1. A parser to convert dom element to Carat VDOM object.
  2. A Carat VDOM functional class
  3. A patcher to check for the differences in the dom. If parents are same recursively check for changes in its children.
  4. A render to convert vdom into real dom
  5. A watcher to check for events upon which a re-render is done.

Example -

//include file carat_output.js

//for building a fresh output run "npm run build"

var caratTestComponent = new Carat( "

{name}
", { name: "Test Component ! ", size: 10, changeName: () => { return " Changed Through click !"; } });

//mount the component var mountElement = document.getElementById("root"); Carat.mount(caratTestComponent, mountElement);

caratjs's People

Contributors

naveennagan avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.