React vs Nue

Source code

The complete framework source codeDetails below

How is Nue so small?

Nue attempts to be a minimal framework to build reactive user interfaces. Everything is as concise as possible: the feature set and the API. Internally Nue takes full advantage of the JavaScript Proxy object and the reactivity is implemented as DOM traversal, instead of diffing.

Why care so much about size?

It’s not so much about the file size. It’s about the amount of code. Smaller projects are (typically):

  1. Easier to extend
  2. Easier to maintain
  3. Easier to use
  4. More stable

Learn why minimalism is important in software development