Introduction to React / / by Cory Gackenheimer
| Introduction to React / / by Cory Gackenheimer |
| Autore | Gackenheimer Cory |
| Edizione | [1st ed. 2015.] |
| Pubbl/distr/stampa | Berkeley, CA : , : Apress : , : Imprint : Apress, , 2015 |
| Descrizione fisica | 1 online resource (141 p.) |
| Disciplina | 004 |
| Collana | Expert's Voice in Web Development |
| Soggetto topico |
Computer programming
Software engineering Programming languages (Electronic computers) Web Development Software Engineering/Programming and Operating Systems Programming Languages, Compilers, Interpreters |
| ISBN |
9781484212455
1484212452 |
| Formato | Materiale a stampa |
| Livello bibliografico | Monografia |
| Lingua di pubblicazione | eng |
| Nota di contenuto |
Contents 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 |
| Record Nr. | UNINA-9910300654003321 |
Gackenheimer Cory
|
||
| Berkeley, CA : , : Apress : , : Imprint : Apress, , 2015 | ||
| Lo trovi qui: Univ. Federico II | ||
| ||
Node.js recipes / / Cory Gackenheimer
| Node.js recipes / / Cory Gackenheimer |
| Autore | Gackenheimer Cory |
| Edizione | [1st ed. 2013.] |
| Pubbl/distr/stampa | New York : , : Apress, , 2013 |
| Descrizione fisica | 1 online resource (xxvii, 347 pages) : illustrations (some color) |
| Disciplina |
004
005.13 005.3 |
| Collana | Expert's voice in Web development Node.js recipes |
| Soggetto topico |
JavaScript (Computer program language)
Web site development |
| ISBN | 1-4302-6059-9 |
| Formato | Materiale a stampa |
| Livello bibliografico | Monografia |
| Lingua di pubblicazione | eng |
| Nota di contenuto |
""Contents at a Glance""; ""Contents""; ""About the Author""; ""About the Technical Reviewers""; ""Acknowledgments""; ""Chapter 1: Understanding Node.js""; ""1-1. Installing Node.js on Your Machine""; ""Windows""; ""OS X""; ""Ubuntu and Linux Mint""; ""Fedora""; ""Arch Linux""; ""FreeBSD and OpenBSD""; ""openSUSE""; ""Windows""; ""OS X""; ""1-2. Installing the npm Package Manager""; ""1-3. Understanding CommonJS Modules""; ""Module Context""; ""Module Identifiers""; ""1-4. Writing Modules for Your Application""; ""1-5. Requiring Modules in Your Application""; ""1-6. Using npm Modules""
""1-7. Getting Started with npm and Dependency""""name""; ""version""; ""description""; ""keywords""; ""homepage""; ""bugs""; ""license""; ""author, contributors""; ""files""; ""main""; ""bin""; ""repository""; ""config""; ""dependencies""; ""devDependencies""; ""bundledDependencies""; ""optionalDependencies""; ""Engines""; ""OS and CPU""; ""preferGlobal""; ""1-8. Installing a Node.js Version Manager""; ""1-9. Using Multiple Versions of Node.js on Your Machine""; ""nvm""; ""nave""; ""n""; ""Summary""; ""Chapter 2: Networking with Node.js""; ""2-1. Setting Up a Server""; ""Problem"" ""Solution""""How It Works""; ""2-2. Creating Connections to Your Server""; ""Problem""; ""Solution""; ""How It Works""; ""2-3. Configuring Server Defaults""; ""Problem""; ""Solution""; ""How It Works""; ""2-4. Creating a Client""; ""Problem""; ""Solution""; ""How It Works""; ""2-5. Using Sockets to Communicate Between Servers""; ""Problem""; ""Solution""; ""How It Works""; ""2-6. Retrieving Details About Connected Servers""; ""Problem""; ""Solution""; ""How It Works""; ""Chapter 3: Using the File System""; ""3-1. Retrieving Directory Structures""; ""Problem""; ""Solution""; ""How It Works"" ""3-2. Navigating Through Directories""""Problem""; ""Solution""; ""How It Works""; ""3-3. Manipulating the Directory Structure""; ""Problem""; ""Solution""; ""How It Works""; ""3-4. Watching a Directory for Modifications""; ""Problem""; ""Solution""; ""How It Works""; ""3-5. Reading Files""; ""Problem""; ""Solution""; ""How It Works""; ""3-6. Writing Files""; ""Problem""; ""Solution""; ""How It Works""; ""3-7. Moving Files""; ""Problem""; ""Solution""; ""How It Works""; ""3-8. Symbolically Linking Files""; ""Problem""; ""Solution""; ""How It Works""; ""3-9. Altering File Permissions"" ""Problem""""Solution""; ""How It Works""; ""3-10. Watching Files for Modifications""; ""Problem""; ""Solution""; ""How It Works""; ""Chapter 4: Building a Web Server""; ""4-1. Setting Up an HTTP Server""; ""Problem""; ""Solution""; ""How It Works""; ""4-2. Using SSL to Build an HTTPS Server""; ""Problem""; ""Solution""; ""How It Works""; ""4-3. Processing Requests on Your Server""; ""Problem""; ""Solution""; ""How It Works""; ""4-4. Sending Responses from Your Server""; ""Problem""; ""Solution""; ""How It Works""; ""4-5. Handling Headers and Status Codes""; ""Problem""; ""Solution"" ""How It Works"" |
| Record Nr. | UNINA-9910735399803321 |
Gackenheimer Cory
|
||
| New York : , : Apress, , 2013 | ||
| Lo trovi qui: Univ. Federico II | ||
| ||