JavaScript with Promises - Helion
ISBN: 978-14-919-3074-8
stron: 94, Format: ebook
Data wydania: 2015-06-01
Księgarnia: Helion
Cena książki: 63,74 zł (poprzednio: 74,99 zł)
Oszczędzasz: 15% (-11,25 zł)
Asynchronous JavaScript is everywhere, whether you’re using Ajax, AngularJS, Node.js, or WebRTC. This practical guide shows intermediate to advanced JavaScript developers how Promises can help you manage asynchronous code effectively—including the inevitable flood of callbacks as your codebase grows. You’ll learn the inner workings of Promises and ways to avoid difficulties and missteps when using them.
The ability to asynchronously fetch data and load scripts in the browser broadens the capabilities of JavaScript applications. But if you don’t understand how the async part works, you’ll wind up with unpredictable code that’s difficult to maintain. This book is ideal whether you’re new to Promises or want to expand your knowledge of this technology.
- Understand how async JavaScript works by delving into callbacks, the event loop, and threading
- Learn how Promises organize callbacks into discrete steps that are easier to read and maintain
- Examine scenarios you’ll encounter and techniques you can use when writing real-world applications
- Use features in the Bluebird library and jQuery to work with Promises
- Learn how the Promise API handles asynchronous errors
- Explore ECMAScript 6 language features that simplify Promise-related code
Osoby które kupowały "JavaScript with Promises", wybierały także:
- Windows Media Center. Domowe centrum rozrywki 66,67 zł, (8,00 zł -88%)
- Ruby on Rails. Ćwiczenia 18,75 zł, (3,00 zł -84%)
- Przywództwo w świecie VUCA. Jak być skutecznym liderem w niepewnym środowisku 58,64 zł, (12,90 zł -78%)
- Scrum. O zwinnym zarządzaniu projektami. Wydanie II rozszerzone 58,64 zł, (12,90 zł -78%)
- Od hierarchii do turkusu, czyli jak zarządzać w XXI wieku 58,64 zł, (12,90 zł -78%)
Spis treści
JavaScript with Promises eBook -- spis treści
- Preface
- Intended Audience
- A Word on Style
- Conventions Used in This Book
- Using Code Examples
- Safari Books Online
- How to Contact Us
- Acknowledgments
- 1. Asynchronous JavaScript
- Callbacks
- Asynchronous JavaScript
- Run to Completion and the Event Loop
- Summary
- 2. Introducing Promises
- Basic Usage
- Multiple Consumers
- Promise States
- Chaining Promises
- Callback Execution Order
- Basic Error Propagation
- The Promise API
- Summary
- 3. Working with Standard Promises
- The Async Ripple Effect
- Conditional Logic
- Parallel Execution
- Sequential Execution Using Loops or Recursion
- Managing Latency
- Functional Composition
- Summary
- 4. Using Libraries and Frameworks
- Promise Interoperability and Thenables
- The Bluebird Promise Library
- Loading Bluebird
- Managing Execution Context
- Wrapping Node.js Functions
- Working with Collections of Promises
- Manipulating Fulfillment Values
- Promises in jQuery
- Summary
- 5. Error Handling
- Rejecting Promises
- Passing Errors
- Unhandled Rejections
- Implementing try/catch/finally
- Using the Call Stack
- Summary
- 6. Combining ECMAScript 6 Features with Promises
- Destructuring
- Arrow Functions
- Iterables and Iterators
- Generators
- Synchronous Style
- Generators and Iterators
- Sending Values to a Generator
- Sending Errors to a Generator
- Practical Application
- Summary
- Index