Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 2.71 KB

401-session-26.md

File metadata and controls

59 lines (41 loc) · 2.71 KB

Reading Class 26: Component Based UI

Name 5 Javascript UI Frameworks (other than React)

  • AngularJS
  • VueJS
  • BackboneJS
  • NodeJS
  • EmberJS
  • MeteorJS
  • PolymerJS
  • Aurelia
  • Svelte
  • Bootstrap

What’s the difference between a framework and a library?

a framework forces architectual adjustment by the developer. A library gives the choice of methods to use but leaves the architecture wide open.

Document the following Vocabulary Terms

Rendering

quora the creation of a visual representation of data.

Templates

wikipedia A web template system in web publishing lets web designers and developers work with web templates to automatically generate custom web pages, such as the results from a search. This reuses static web page elements while defining dynamic elements based on web request parameters. Web templates support static content, providing basic structure and appearance. Developers can implement templates from content management systems, web application frameworks, and HTML editors. Template (file format), a standardized non-executable file type used by computer software as a pre-formatted example on which to base other files, especially documents.

State

geeksforgeeks State in React is a plain JavaScript object. It holds information that influences the output of render and is managed within the component. The state starts with a default value when a Component mounts and then suffers from mutations in time (mostly generated from user events). It's a serializable* representation of one point in time—a snapshot.

Preview

Skim the following materials in preparation for the upcoming lecture. Note the following as you browse the material, and be prepared to participate in discussions during lecture

  • Which 3 things had you heard about previously and now have better clarity on? state in react
  • Which 3 things are you hoping to learn more about in the upcoming lecture/demo? modularization, state, functional components
  • What are you most excited about trying to implement or see how it works? modularization, state, functional components

Preparation Materials

Bookmark