react js intro

7
REACTJS Des Moines WebGeeks, November 2015

Upload: jessica-le

Post on 15-Jan-2017

324 views

Category:

Software


1 download

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