Files
react.dev/docs/videos.md
Daniel Lo Nigro d457201862 Upgrade to Jekyll 3
Full list of changes is at https://jekyllrb.com/docs/upgrading/2-to-3/. The tl;dr of it is:
 - Relative permalinks were removed, so all the files in the `docs` subdirectory need their permalink to be prefixed with `docs/`
 - `post` and `page` types were renamed to `posts` and `pages` respectively
 - `jekyll-paginate`, `pygments` and `redcarpet` are all now optional, so I needed to explicitly add it to the Gemfile. Jekyll now uses `rouge` rather than `pygments` for syntax highlighting, but rouge does not support highlighting individual lines (`hl_lines`) so we need to continue using Pygments.
 - Layout metadata (eg. `sectionid`) is now on a `layout` variable rather than `page`

Tested the following pages and confirmed that they all work:
 - "Docs" link (getting started page): http://127.0.0.1:4000/react/docs/getting-started.html
 - Downloads: http://127.0.0.1:4000/react/downloads.html
 - Tutorial: http://127.0.0.1:4000/react/docs/tutorial.html
 - A few pages under the "docs" subdirectory, to confirm they're working properly:
    - http://127.0.0.1:4000/react/docs/addons.html
 - http://127.0.0.1:4000/react/docs/why-react.html
 - http://127.0.0.1:4000/react/docs/create-fragment.html
 - A few tips:
    - http://127.0.0.1:4000/react/tips/false-in-jsx.html
 - http://127.0.0.1:4000/react/tips/style-props-value-px.html
 - Non-English versions of the page:
    - http://127.0.0.1:4000/react/docs/getting-started-it-IT.html
    - http://127.0.0.1:4000/react/docs/getting-started-ja-JP.html
2016-07-19 12:18:49 -07:00

7.8 KiB
Raw Blame History

id, title, permalink, prev, next
id title permalink prev next
videos Videos docs/videos.html conferences.html complementary-tools.html

Rethinking best practices - JSConf.eu

"At Facebook and Instagram, were trying to push the limits of whats possible on the web with React. My talk will start with a brief introduction to the framework, and then dive into three controversial topics: Throwing out the notion of templates and building views with JavaScript, “re-rendering” your entire application when your data changes, and a lightweight implementation of the DOM and events." -- Pete Hunt


Thinking in react - tagtree.tv

A tagtree.tv video conveying the principles of Thinking in React while building a simple app

[![](/react/img/docs/thinking-in-react-tagtree.png)](http://tagtree.tv/thinking-in-react)

Secrets of the Virtual DOM - MtnWest JS

"In this talk Ill be discussing why we built a virtual DOM, how it compares to other systems, and its relevance to the future of browser technologies." -- Pete Hunt


Going big with React

"On paper, all those JS frameworks look promising: clean implementations, quick code design, flawless execution. But what happens when you stress test Javascript? What happens when you throw 6 megabytes of code at it? In this talk, we'll investigate how React performs in a high stress situation, and how it has helped our team build safe code on a massive scale."

[![](https://i.vimeocdn.com/video/481670116_650.jpg)](https://skillsmatter.com/skillscasts/5429-going-big-with-react#video)

CodeWinds

Pete Hunt talked with Jeff Barczewski about React in CodeWinds Episode 4.

[![](/react/img/docs/codewinds-004.png)](http://codewinds.com/4)
02:08 - What is React and why use it?
03:08 - The symbiotic relationship of ClojureScript and React
04:54 - The history of React and why it was created
09:43 - Updating web page with React without using data binding
13:11 - Using the virtual DOM to change the browser DOM
13:57 - Programming with React, render targets HTML, canvas, other
16:45 - Working with designers. Contrasted with Ember and AngularJS
21:45 - JSX Compiler bridging HTML and React javascript
23:50 - Autobuilding JSX and in browser tools for React
24:50 - Tips and tricks to working with React, getting started
27:17 - Rendering HTML on the server with Node.js. Rendering backends
29:20 - React evolved through survival of the fittest at Facebook
30:15 - Ideas for having state on server and client, using web sockets.
32:05 - React-multiuser - distributed shared mutable state using Firebase
33:03 - Better debugging with React using the state transitions, replaying events
34:08 - Differences from Web Components
34:25 - Notable companies using React
35:16 - Could a React backend plugin be created to target PDF?
36:30 - Future of React, what's next?
39:38 - Contributing and getting help

Read the episode notes


JavaScript Jabber

Pete Hunt and Jordan Walke talked about React in JavaScript Jabber 73.

[![](/react/img/docs/javascript-jabber.png)](http://javascriptjabber.com/073-jsj-react-with-pete-hunt-and-jordan-walke/#content)
01:34 Pete Hunt Introduction
02:45 Jordan Walke Introduction
04:15 React
06:38 60 Frames Per Second
09:34 Data Binding
12:31 Performance
17:39 Diffing Algorithm
19:36 DOM Manipulation
23:06 Supporting node.js
24:03 rendr
26:02 JSX
30:31 requestAnimationFrame
34:15 React and Applications
38:12 React Users Khan Academy
39:53 Making it work

Read the full transcript


Introduction to React.js - Facebook Seattle

By Tom Occhino and Jordan Walke


Backbone + React + Middleman Screencast

Backbone is a great way in interface a REST API with React. This screencast shows how to integrate the two using Backbone-React-Component. Middleman is the framework used in this example but could easily be replaced with other frameworks. A supported template of this can be found here. -- Open Minded Innovations


Developing User Interfaces With React - Super VanJS

By Steven Luscher


Introduction to React - LAWebSpeed meetup

by Stoyan Stefanov


React, or how to make life simpler - FrontEnd Dev Conf '14

In Russian by Alexander Solovyov


"Functional DOM programming" - Meteor DevShop 11


"Rethinking Web App Development at Facebook" - Facebook F8 Conference 2014


React and Flux: Building Applications with a Unidirectional Data Flow - Forward JS 2014

Facebook engineers Bill Fisher and Jing Chen talk about Flux and React, and how using an application architecture with a unidirectional data flow cleans up a lot of their code.


Server-Side Rendering of Isomorphic Apps at SoundCloud

Walk-through by Andres Suarez on how SoundCloud is using React and Flux for server-side rendering.

Slides and sample code


Introducing React Native (+Playlist) - React.js Conf 2015

Tom Occhino reviews the past and present of React in 2015, and teases where it's going next.