Cargando…

Ember. js Cookbook.

Arm yourself with over 65 hands-on recipes to master the skills of building scalable web applications with Ember.jsAbout This Book This book is your one-stop solution to the key features of Ember.js. Become skilled in the art of building web-apps in a fraction of the code you'd write in other f...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Hanchett, Erik (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham : Packt Publishing, Limited Feb. 2016.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000 4500
001 EBOOKCENTRAL_ocn951668540
003 OCoLC
005 20240329122006.0
006 m o d
007 cr |n|||||||||
008 160301e20160229enk o 000 0 eng d
040 |a COO  |b eng  |e pn  |c COO  |d EBLCP  |d VT2  |d OCLCO  |d OCLCF  |d CHVBK  |d DEBBG  |d FEM  |d IDB  |d YDXCP  |d IDEBK  |d DEBSZ  |d OCLCQ  |d MERUC  |d OCLCQ  |d LVT  |d UKAHL  |d OCLCQ  |d OCLCO  |d K6U  |d OCLCQ  |d OCLCO 
019 |a 942842509  |a 944156572  |a 968012215  |a 969086012 
020 |a 9781783982202 
020 |a 1783982209  |q (Trade Paper) 
020 |a 9781783982219 
020 |a 1783982217 
024 3 |a 9781783982202 
029 1 |a AU@  |b 000062540240 
029 1 |a AU@  |b 000067108549 
029 1 |a CHNEW  |b 000884624 
029 1 |a CHVBK  |b 374433240 
029 1 |a DEBBG  |b BV043893556 
029 1 |a DEBSZ  |b 473885905 
035 |a (OCoLC)951668540  |z (OCoLC)942842509  |z (OCoLC)944156572  |z (OCoLC)968012215  |z (OCoLC)969086012 
037 |b 01201872 
050 4 |a QA76.76.A65  |b H36 2016 
082 0 4 |a 004.682  |q OCoLC  |2 23/eng/20230216 
049 |a UAMI 
100 1 |a Hanchett, Erik,  |e author. 
245 1 0 |a Ember. js Cookbook. 
260 |a Birmingham :  |b Packt Publishing, Limited  |c Feb. 2016. 
300 |a 1 online resource 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
520 8 |a Arm yourself with over 65 hands-on recipes to master the skills of building scalable web applications with Ember.jsAbout This Book This book is your one-stop solution to the key features of Ember.js. Become skilled in the art of building web-apps in a fraction of the code you'd write in other frameworks. Build JavaScript apps that don't break the web! Our 100 recipes will make this a cakewalk for you! This books makes learning Ember.js easy by breaking down each topic into simple-to-understand recipesWho This Book Is ForAnyone who wants to explore Ember.js and wishes to get hands on making sophisticated web apps with less coding will find this book handy. Prior experience in Coding and familiarity with JavaScript is recommended. If you've heard of Ember.js or are just curious on how a single-page application framework works, then this book is for you. What You Will Learn Skip the boilerplate code with Ember CLI generators Create a component with actions and events Set up a model with Ember Data using fixture data Create several different types of test cases and run them Manage and set up user authentication using Ember Simple Auth Add animated transitions to your app with Liquid Fire Set up a service and initializer with dependency injection Create a working chat application Set up an Ember Service and initializer with dependency injection Create a working chat applicationIn DetailEmber.js is an open source JavaScript framework that will make you more productive. It uses common idioms and practices, making it simple to create amazing single-page applications. It also lets you create code in a modular way using the latest JavaScript features. Not only that, it has a great set of APIs to get any task done. The Ember.js community is welcoming newcomers and is ready to help you when needed. This book provides in-depth explanations on how to use the Ember.js framework to take you from beginner to expert. You'll start with some basic topics and by the end of the book, you'll know everything you need to know to build a fully operational Ember application. We'll begin by explaining key points on how to use the Ember.js framework and the associated tools. You'll learn how to effectively use Ember CLI and how to create and deploy your application. We'll take a close look at the Ember object model and templates by examining bindings and observers. We'll then move onto Ember components, models, and Ember Data. We'll show you examples on how to connect to RESTful databases. Next we'll get to grips with testing with integration and acceptance tests using QUnit. We will conclude by covering authentication, services, and Ember add-ons. We'll explore advanced topics such as services and initializers, and how to use them together to build real-time applications. Style and approachEach recipe in this book will make it that much easier to understand Ember.js. Recipe after recipe, you will learn the concepts of Ember.js by following the simple step-by-step processes. 
505 0 |a Cover -- Copyright -- Credits -- About the Author -- About the Reviewer -- www.PacktPub.com -- Table of Contents -- Preface -- Chapter 1: Ember CLI Basics -- Introduction -- Installing Ember CLI -- Creating your first project -- Exploring pods and the folder layout -- Asset compilation -- Dependency management -- Upgrading your project -- Deployment -- Chapter 2: The Ember. Object Model -- Introduction -- Working with classes and instances -- Working with computed properties -- Working with Ember observers in Ember.js -- Working with bindings -- Using mixins -- Using enumerables with arrays -- Chapter 3: Ember Templates -- Introduction -- Defining an application template -- Working with conditionals in templates -- Displaying a list of items -- Binding with element attributes and classes -- Working with HTML links inside templates -- Handling HTML actions -- Using template input helpers -- Using development helpers -- Chapter 4: Ember Router -- Introduction -- Defining an application route -- Setting up a route model -- Handling dynamic segments inside routes -- Defining routes with templates -- Using redirection with routes -- Working with asynchronous routing -- Loading and error handling -- Using query parameters -- Chapter 5: Ember Controllers -- Introduction -- Storing application properties -- Handling actions in controllers -- Working with transitions -- Managing dependencies between controllers -- Chapter 6: Ember Components -- Introduction -- Using components in an application -- Using events in components -- Implementing actions in components -- Passing properties to a component -- Using yield with components -- Chapter 7: Ember Models and Ember Data -- Introduction -- Understanding the functionalities of Ember Data -- Creating, reading, updating, and deleting records with Ember Data -- Using fixtures. 
505 8 |a Customizing the adapter and serializer -- Working with relationships -- Chapter 8: Logging, Debugging, and Testing -- Introduction -- Using Ember. Logger -- Using Ember Inspector -- Verifying deprecations and using advanced features of Ember Inspector -- Using acceptance testing -- Using unit tests -- Testing components -- Testing routes -- Testing models -- Testing controllers -- Chapter 9: Real-Life Tasks with Ember.js -- Introduction -- Using services with a component -- Managing basic authentication -- Using OAuth2 with Ember Simple Auth -- Using Liquid Fire to create transitions -- Working with HTML5 drag and drop -- Learning Bootstrap with Ember.js -- Chapter 10: Awesome Tasks with Ember -- Introduction -- Using Ember validations -- Using D3.js with Ember.js -- Using Ember with Sockets -- Using Ember with Firebase -- Using server side rendering -- Chapter 11: Real-Time Web Applications -- Introduction -- Using dependency injection -- Working with application initializers -- Building a chat application -- Creating and working with add-ons -- Learning the Ember run loop -- Index. 
590 |a ProQuest Ebook Central  |b Ebook Central Academic Complete 
650 0 |a JavaScript (Computer program language) 
650 0 |a Application software  |x Development. 
650 0 |a Ember.js (Web site development tool) 
650 6 |a JavaScript (Langage de programmation) 
650 6 |a Logiciels d'application  |x Développement. 
650 7 |a Application software  |x Development  |2 fast 
650 7 |a Ember.js (Web site development tool)  |2 fast 
650 7 |a JavaScript (Computer program language)  |2 fast 
655 4 |a Web Design; Web Programming. 
776 0 8 |i Erscheint auch als:  |n Druck-Ausgabe  |t Hanchett, Erik. Ember.js Cookbook 
856 4 0 |u https://ebookcentral.uam.elogim.com/lib/uam-ebooks/detail.action?docID=4520816  |z Texto completo 
936 |a BATCHLOAD 
938 |a Askews and Holts Library Services  |b ASKH  |n BDZ0027122887 
938 |a EBL - Ebook Library  |b EBLB  |n EBL4520816 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis34109863 
938 |a YBP Library Services  |b YANK  |n 12872678 
994 |a 92  |b IZTAP