Top Banner
REACTJS Des Moines WebGeeks, November 2015
7

React js intro

Jan 15, 2017

Download

Software

Jessica Le
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: React js intro

REACTJS

Des Moines WebGeeks, November 2015

Page 2: React js intro

Agenda

JSX pages – Justin Stevens

Intro – Jessica Le

Components – Matthew Nuzum

React Dojo - All

Page 3: React js intro

ANGULAR JS

BACKBONE JS

EMBER JS

REACT JS

Page 4: React js intro

HOW DO THESE FRAMEWORKS COMPARE?

www.clipartbest.com, http://marvel.wikia.com/wiki/Thor_Odinson_(Earth-12131)

ControllerView

Model

REACT

Page 5: React js intro

Only the VIEW layer

◦Cannot build fully functional app

◦Faster performance for data rendering

REACT JS: ‘V’ in MVC

Page 6: React js intro

Simple

Declare how your app should look at any given time & when data changes the UI will update

Reusable Components

Only thing you do is build components!

Code reuse, testing, separation of concerns

Big Data

Built to use for large applications with data that changes over time

WHY React?

Page 7: React js intro

Agenda

Components – Matthew Nuzum

React Dojo - All

JSX pages – Justin Stevens