Introduction to React /
Introduction to React teaches you React, the JavaScript framework created by developers at Facebook, to solve the problem of building complex user interfaces in a consistent and maintainable way. React.js shrugs away common front-end conventions in an effort to make things more efficient - use Intro...
Clasificación: | Libro Electrónico |
---|---|
Autor principal: | |
Formato: | Electrónico eBook |
Idioma: | Inglés |
Publicado: |
[Berkeley, CA] :
Apress,
2015.
|
Colección: | Expert's voice in Web development.
|
Temas: | |
Acceso en línea: | Texto completo (Requiere registro previo con correo institucional) |
Tabla de Contenidos:
- At a Glance; Contents; About the Author; About the Technical Reviewer; Acknowledgments; Chapter 1: What Is React?; Defining React; Why React?; What Problems Does React Solve?; React Is Not Just Another Framework; Ember.js; AngularJS; React; React Concepts and Terminology; Getting React; Components; Virtual DOM; JSX; Properties; State; Flux; Tools; Add-Ons; Summary; Chapter 2: The Core of React; React; React.createClass ; React. Children.map; React. Children.forEach; React. Children.count; React. Children.only; React.createElement; React.cloneElement ; React. DOM.
- React.createFactory React.render; React.renderToString; React.findDOMNode; Discovering React Components; Understanding Component Properties and Methods; Component Lifecycle and Rendering; render; getInitialState ; getDefaultProps; Mixins; propTypes; statics; displayName; componentWillMount; componentDidMount; componentWillReceiveProps; shouldComponentUpdate ; componentWillUpdate; componentDidUpdate; componentWillUnmount; React Elements; React Factories ; Summary; Chapter 3: JSX Fundamentals; Why Use JSX Instead of Conventional JavaScript?; Using a JSX Transformer.
- How JSX Converts from an XML-Like Syntax to Valid JavaScript Spread Attributes and Other Considerations for JSX; Summary; Chapter 4: Building a React Web Application; Outlining Your Application's Basic Functionality; Thinking in Terms of Components; Wireframes; Rewrite an Existing Application; Creating the Necessary Components for Your App; Testing Your Application; Simulate; renderIntoDocument; mockComponent; isElement; isElementOfType; isDOMComponent; isCompositeComponent; isCompositeComponentWithType ; findAllInRenderedTree; scryRenderedDOMComponentsWithClass.
- FindRenderedDOMComponentsWithClass scryRenderedDOMComponentsWithTag ; findRenderedDOMComponentsWithTag ; scryRenderedComponentsWithType ; findRenderedComponentsWithType ; Running Your Application; Summary; Chapter 5: Introducing Flux: An Application Architecture for React; What Flux Is and Why It Is Different than Typical MVC Fram eworks; The Basic Components of Flux; Dispatcher; Stores; Actions; Views; How React and Flux Look Together; Summary; Chapter 6: Using Flux to Structure a React Application; Structuring Your Application.
- Creating Dispatcher, Stores, Actions, and React Components for the Application Dispatcher ; Stores; Actions; React Components; Writing Tests; Running the Application; Summary; Index.