reading-notes

Component Based UI

  1. Name 5 Javascript UI Frameworks (other than React)
    • Angular
    • Vue
    • Ember
    • Sencha Ext
    • Svelte 3 src
  2. What’s the difference between a framework and a library?

A library is only used when and where you call for it while a framework inverts the control of the program allowing less control over the code for the creator. A framework is a collection of libraries.src

Rendering - Gathering data to load to a template it associated with and sending it as an output on the client side.src

Templates - A structure/pattern for writing code

State - A state is a point of event amongst other events within an application.

Hello World-React