Cargando…

Angular 2 By Example.

Discover everything you need to know to build your own Angular 2 applications the hands-on wayAbout This Book Master the Angular way to structure, build, deploy, and test your code Understand Angular 2's new component-based architecture Build a game and workout runner apps on the Angular platfo...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Arora, Chandermani
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Packt Publishing, 2016.
Edición:1.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000Ma 4500
001 EBSCO_ocn963676683
003 OCoLC
005 20231017213018.0
006 m o d
007 cr |n|||||||||
008 161118s2016 xx o 000 0 eng d
040 |a IDEBK  |b eng  |e pn  |c IDEBK  |d OCLCQ  |d IDEBK  |d NLE  |d OCLCO  |d YDX  |d FEM  |d N$T  |d COO  |d OCLCQ  |d EBLCP  |d MERUC  |d OCLCQ  |d OCLCF  |d REB  |d OCLCQ  |d OCLCO  |d LVT  |d AGLDB  |d G3B  |d IGB  |d STF  |d UKAHL  |d UKMGB  |d OCLCQ  |d INARC  |d OCLCO  |d OCLCQ  |d OCLCO 
015 |a GBB670980  |2 bnb 
016 7 |a 017858041  |2 Uk 
019 |a 967186425  |a 968128003  |a 969041507 
020 |a 178588140X  |q (electronic bk.) 
020 |a 9781785881404  |q (electronic bk.) 
020 |z 178588719X 
020 |z 9781785887192 
029 1 |a AU@  |b 000067099857 
029 1 |a CHNEW  |b 000949238 
029 1 |a CHVBK  |b 48315413X 
029 1 |a UKMGB  |b 017858041 
035 |a (OCoLC)963676683  |z (OCoLC)967186425  |z (OCoLC)968128003  |z (OCoLC)969041507 
037 |a 970390  |b MIL 
050 4 |a T55.4-60.8 
072 7 |a COM  |x 000000  |2 bisacsh 
082 0 4 |a 006.76  |2 23 
049 |a UAMI 
100 1 |a Arora, Chandermani. 
245 1 0 |a Angular 2 By Example. 
250 |a 1. 
260 |b Packt Publishing,  |c 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 
588 0 |a Print version record. 
520 |a Discover everything you need to know to build your own Angular 2 applications the hands-on wayAbout This Book Master the Angular way to structure, build, deploy, and test your code Understand Angular 2's new component-based architecture Build a game and workout runner apps on the Angular platformWho This Book Is For This book is for JavaScript developers who are new to Angular 2, or are familiar with the basics but want to take things a step further. If you are motivated to learn by doing things actively, this book is for you. What You Will Learn Design, develop, deploy, and test the apps you build Work your way through every aspect of app development using Angular2 Understand the inner workings of Angular's view templating and data-binding capabilities Work on HTML forms and learn the Angular way to bind, validate, and format data Create component, structural, and attribute directives to extend standard HTML behavior Integrate with the server backend and find out about data retrieval and persistence using Angular Gain practical insight into the challenges of building apps using Angular as well as their solutionsIn Detail Angular 2 will help you build faster, more efficient, and more flexible cross-platform applications. Angular 2 is known for taking the pain out of JavaScript development, and enabling more organized, readable, and testable code. This book builds three apps with varying degrees of complexity. It starts with a simple 'Guess the Number' game, which serves as a platform to launch you into the world of Angular. Next, you will learn to construct a popular '7-Minute Workout' app, covering the building blocks of Angular. The final app, 'Personal Trainer' morphs the existing '7-Minute Workout' into a full-fledged personal workout builder and runner, covering advanced directive building, which is the most fundamental and powerful feature of Angular. In addition to this, you will learn about testability and the framework constructs Angular provides to effectively test your app. The book concludes by providing you with practical advice and useful tips that will come in handy as you build more and more apps with Angular. Style and approach This project-based book will get you building fun projects to see how Angular works in the wild. The book focuses more on doing things rather than just reading the theory. The chapters are structured to introduce the concept, then implement it, and finally explain why it worked. 
505 0 |a Cover; Copyright; Credits; About the Authors; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: Getting Started; Angular basics; The component pattern; Using the component pattern in web applications; Why weren't components used before in Angular?; What's new that enables Angular to use this pattern?; Web Components; Angular and Web Components; Language support in Angular; ES2015; TypeScript; Putting it all together; Angular modules; The basic steps to building Angular applications; The customary Hello Angular app -- Guess the Number!; Setting up a development server. 
505 8 |a Building Guess the Number!Designing our first component; The host file; An HTML page; Script tags; Custom elements; The component file; The import statement; Decorators; Defining the class; The module file; Bootstrapping; We're up-and-running!; Digging deeper; Interpolation; Tracking changes in the number of tries; Expressions; The safe navigation operator; Data binding; Property binding; Event binding; Structural directives; Revisiting our app; Looking at how our code handles updates; Maintaining the state; Component as the container for the state; Change detection; Initializing the app. 
505 8 |a Loading the modules needed by our applicationBootstrapping our app; Tools; Resources; Summary; Chapter 2: Building Our First App -- 7 Minute Workout; What is 7 Minute Workout?; Downloading the code base; Setting up the build; The build internals; Code transpiling; Organizing code; The 7 Minute Workout model; App bootstrapping; App loading with SystemJS; Our first component -- WorkoutRunnerComponent; Component life cycle hooks; Building the 7 Minute Workout view; The Angular 2 binding infrastructure; Interpolations; Property binding; Property versus attribute; Property binding continued ... 
505 8 |a Quick expression evaluationSide-effect-free binding expressions; Angular directives; Target selection for binding; Attribute binding; Style and class binding; Attribute directives; Styling HTML with ngClass and ngStyle; Exploring Angular modules; Comprehending Angular modules; Adding a new module to 7 Minute Workout; Learning more about an exercise; Adding descriptions and video panels; Providing component inputs; Structural directives; The ever-so-useful NgFor; NgFor performance; Angular 2 security; Trusting safe content; Formatting exercise steps with innerHTML binding. 
505 8 |a Displaying the remaining workout duration using pipesAngular pipes; Implementing a custom pipe -- SecondsToTimePipe; Adding the next exercise indicator using ngIf; Pausing an exercise; The Angular event binding infrastructure; Event bubbling; Event binding an event object; Two-way binding with ngModel; Summary; Chapter 3: More Angular 2 -- SPA, Routing, and Data Flows in Depth; Exploring Single Page Application capabilities; The Angular SPA infrastructure; Angular routing; Angular router; Routing setup; Pushstate API and server-side url-rewrites; Adding start and finish pages. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
630 0 0 |a AngularJS (Software framework) 
630 0 7 |a AngularJS (Software framework)  |2 fast 
650 0 |a Application software  |x Development. 
650 0 |a JavaScript (Computer program language) 
650 6 |a Logiciels d'application  |x Développement. 
650 6 |a JavaScript (Langage de programmation) 
650 7 |a COMPUTERS  |x General.  |2 bisacsh 
650 7 |a Application software  |x Development  |2 fast 
650 7 |a JavaScript (Computer program language)  |2 fast 
776 0 8 |i Print version:  |z 178588719X  |z 9781785887192  |w (OCoLC)948336785 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1421551  |z Texto completo 
938 |a Internet Archive  |b INAR  |n angular2byexampl0000aror 
938 |a Askews and Holts Library Services  |b ASKH  |n AH30656418 
938 |a EBSCOhost  |b EBSC  |n 1421551 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis34514583 
938 |a YBP Library Services  |b YANK  |n 13313082 
994 |a 92  |b IZTAP